module CsvBlueprints

Constants

Column
VERSION

Public Class Methods

specify(&block) click to toggle source
# File lib/csv_blueprints.rb, line 9
def self.specify(&block)
  Blueprint.new.tap do |blueprint|
    blueprint.instance_eval(&block) if block_given?
  end
end