Module: SimpleForm::MapType
- Included in:
- FormBuilder
- Defined in:
- lib/simple_form/map_type.rb
Class Method Summary (collapse)
Instance Method Summary (collapse)
Class Method Details
+ (Object) extended(base)
5 6 7 8 |
# File 'lib/simple_form/map_type.rb', line 5 def self.extended(base) base.class_attribute :mappings base.mappings = {} end |
Instance Method Details
- (Object) map_type(*types)
10 11 12 13 14 |
# File 'lib/simple_form/map_type.rb', line 10 def map_type(*types) map_to = types.[:to] raise ArgumentError, "You need to give :to as option to map_type" unless map_to self.mappings = mappings.merge types.each_with_object({}) { |t, m| m[t] = map_to } end |