Class: DataMapper::Property::Json
- Inherits:
-
Text
- Object
- Text
- DataMapper::Property::Json
- Includes:
- DirtyMinder
- Defined in:
- lib/dm-types/json.rb
Instance Method Summary collapse
- #dump(value) ⇒ Object
- #load(value) ⇒ Object
- #typecast(value) ⇒ Object
- #value_loaded?(value) ⇒ Boolean
Methods included from DirtyMinder
Instance Method Details
#dump(value) ⇒ Object
20 21 22 23 24 25 26 |
# File 'lib/dm-types/json.rb', line 20 def dump(value) if value.nil? || value.is_a?(::String) value else MultiJson.dump(value) end end |
#load(value) ⇒ Object
10 11 12 13 14 15 16 17 18 |
# File 'lib/dm-types/json.rb', line 10 def load(value) if value.nil? || value_loaded?(value) value elsif value.is_a?(::String) typecast(value) else raise ArgumentError.new("+value+ of a property of JSON type must be nil or a String") end end |
#typecast(value) ⇒ Object
28 29 30 31 32 33 34 35 36 |
# File 'lib/dm-types/json.rb', line 28 def typecast(value) return if value.nil? if value_loaded?(value) value else MultiJson.load(value.to_s) end end |
#value_loaded?(value) ⇒ Boolean
38 39 40 |
# File 'lib/dm-types/json.rb', line 38 def value_loaded?(value) value.kind_of?(::Array) || value.kind_of?(::Hash) end |