heartcombo--simple_form/lib/simple_form/map_type.rb

17 lines
539 B
Ruby

module SimpleForm
Mapping = Struct.new(:method, :collection, :options, :with_priority)
module MapType
def mappings
@mappings ||= {}
end
def map_type(*types)
options = types.extract_options!
raise ArgumentError, "You need to give :to as option to map_type" unless options[:to]
mapping = Mapping.new(options[:to], options[:collection] || false,
options[:options] || false, options[:with_priority] || false)
types.each { |t| mappings[t] = mapping }
end
end
end