module FixedWidthDSL

Public Class Methods

define(&block) click to toggle source
# File lib/fixed_width_dsl.rb, line 50
def self.define &block
  format_string = FormatString.new
  format_string.instance_eval &block
  format_string
end