Method: ClientData::Methods#builders
- Defined in:
- lib/client_data/methods.rb
#builders ⇒ Object
24 25 26 27 28 29 30 31 32 33 |
# File 'lib/client_data/methods.rb', line 24 def builders @builders ||= begin builders_hash = {} .each do |key, | name = [:as].nil? ? key : [:as] builders_hash[name] = create_builder(key) end builders_hash end end |