aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/type/serialized.rb
Commit message (Expand)AuthorAgeFilesLines
* Enable `Layout/EmptyLinesAroundAccessModifier` copRyuta Kamizono2019-06-131-1/+0
* Fix force equality checking not to break the serialized attribute with ArrayRyuta Kamizono2018-06-061-0/+4
* Use frozen-string-literal in ActiveRecordKir Shatrov2017-07-191-0/+2
* Revert "Merge pull request #29540 from kirs/rubocop-frozen-string"Matthew Draper2017-07-021-1/+0
* Enforce frozen string in RubocopKir Shatrov2017-07-011-0/+1
* Suppress deprecation warning `implementing to_yaml is deprecated`Fumiaki MATSUSHIMA2017-02-151-0/+2
* Indicate action that failed in YamlColumnKir Shatrov2017-02-051-1/+1
* Revert "Made ActiveRecord consistently use ActiveRecord::Type (not"Sean Griffin2016-10-231-2/+2
* Made ActiveRecord consistently use ActiveRecord::Type (notIain Beeston2016-10-031-2/+2
* normalizes indentation and whitespace across the projectXavier Noria2016-08-061-7/+7
* Fix false positive mutation detection when JSON is used with serializeSean Griffin2016-05-121-1/+7
* Clean up the implementation of AR::DirtySean Griffin2015-09-241-0/+6
* Move ActiveRecord::Type to ActiveModelKir Shatrov2015-09-211-2/+2
* Provide a more truthful #inspectMatthew Draper2015-03-231-0/+4
* Make sure to persist a newly-nil serialized valueMatthew Draper2015-03-231-1/+3
* `type_cast_for_database` -> `serialize`Sean Griffin2015-02-171-2/+2
* `Type#type_cast_from_database` -> `Type#deserialize`Sean Griffin2015-02-171-1/+1
* Move non-type objects into the `Type::Helpers` namespaceSean Griffin2015-02-071-1/+1
* rm `ActiveRecord::Type::Decorator`Sean Griffin2015-02-071-11/+0
* Don't treat `nil` as changed in serialized typesSean Griffin2014-12-231-1/+1
* Use `DelegateClass` instead of `SimpleDelegator` for type decoratorsSean Griffin2014-11-141-1/+1
* Allow YAML serialization when using TZ aware attributesSean Griffin2014-09-171-3/+3
* Correctly detect mutation on serialized columns mapping to binarySean Griffin2014-08-271-0/+5
* Rename method for clarityCarlos Antonio da Silva2014-07-311-3/+3
* Remove `serialized?` from the type interfaceSean Griffin2014-06-131-4/+0
* Detect in-place changes on mutable AR attributesSean Griffin2014-06-131-4/+2
* Keep the types of virtual columns after yaml serializationSean Griffin2014-06-101-0/+11
* Rename `type_cast` to `type_cast_from_database`Sean Griffin2014-06-091-2/+2
* Make `_before_type_cast` actually be before type castSean Griffin2014-06-091-3/+5
* Do not type cast twice on attribute assignmentSean Griffin2014-06-071-4/+0
* serialized Type should delegate `type_cast_for_write` to underlying TypeYves Senn2014-06-061-1/+1
* Refactor determination of whether the field has changedSean Griffin2014-06-031-0/+4
* Remove most code related to serialized propertiesSean Griffin2014-06-011-24/+11
* Move `type_cast_for_write` behavior over to the serialized type objectSean Griffin2014-05-291-3/+32
* Refactor serialized types to be partially defined as custom propertiesSean Griffin2014-05-291-0/+28