module TableStructure::Schema::DSL::ContextBuilder

Public Instance Methods

context_builder(name, &block) click to toggle source

TODO: Change definition style

# File lib/table_structure/schema/dsl/context_builder.rb, line 8
def context_builder(name, &block)
  context_builders[name] = block
  nil
end
context_builders() click to toggle source
# File lib/table_structure/schema/dsl/context_builder.rb, line 13
def context_builders
  @__context_builders__ ||= {}
end