Sha256: 1d37e1865f632304958dacad5114f7ae1dd593388377394371e72c43a6744a61
Contents?: true
Size: 1.17 KB
Versions: 3
Compression:
Stored size: 1.17 KB
Contents
require 'dm-core' require 'dm-types/support/flags' module DataMapper class Property class Enum < Integer min 1 include Flags def initialize(model, name, options = {}) @flag_map = {} flags = options.fetch(:flags, self.class.flags) flags.each_with_index do |flag, i| @flag_map[i.succ] = flag end if self.class.accepted_options.include?(:set) && !options.include?(:set) options[:set] = @flag_map.values_at(*@flag_map.keys.sort) end options[:max] = @flag_map.size super end def load(value) flag_map[value] end def dump(value) case value when ::Array then value.collect { |v| dump(v) } else flag_map.invert[value] end end def typecast_to_primitive(value) # Attempt to typecast using the class of the first item in the map. case flag_map[1] when ::Symbol then value.to_sym when ::String then value.to_s when ::Fixnum then value.to_i else value end end end # class Enum end # class Property end # module DataMapper
Version data entries
3 entries across 3 versions & 2 rubygems
Version | Path |
---|---|
ardm-types-1.2.3 | lib/dm-types/enum.rb |
ardm-types-1.2.2 | lib/dm-types/enum.rb |
dm-types-1.2.2 | lib/dm-types/enum.rb |