# File lib/simple_form/map_type.rb, line 7defmap_type(*types)
options = types.extract_options!raiseArgumentError, "You need to give :to as option to map_type"unlessoptions[:to]
types.each { |t|mappings[t] = options[:to] }
end
mappings()click to toggle source
# File lib/simple_form/map_type.rb, line 3defmappings@mappings||= {}
end