Class: TableStructure::Schema::ResultBuildable

Inherits:
Module
  • Object
show all
Defined in:
lib/table_structure/schema/row_builders.rb

Instance Method Summary collapse

Constructor Details

#initialize(methods) ⇒ ResultBuildable



51
52
53
54
55
# File 'lib/table_structure/schema/row_builders.rb', line 51

def initialize(methods)
  methods.each do |name, method|
    define_method(name, &method)
  end
end