aboutsummaryrefslogtreecommitdiffstats
path: root/activemodel/test/cases/serializers
Commit message (Collapse)AuthorAgeFilesLines
* ActiveModel support for the :include serialization optionJohn Firebaugh2011-07-171-2/+50
| | | | | | | | | | | | | | | | | | | | This commit moves support for the :include serialization option for serializing associated objects out of ActiveRecord in into ActiveModel. The following methods support the :include option: * serializable_hash * to_json * to_xml Instances must respond to methods named by the values of the :includes array (or keys of the :includes hash). If an association method returns an object that is_a?(Enumerable) (which AR has_many associations do), it is assumed to be a collection association, and its elements must respond to :serializable_hash. Otherwise it must respond to :serializable_hash itself. While here, fix #858, XmlSerializer should not singularize already singular association names.
* Enable passing root: false to #to_jsonJoe Fiorini2011-07-011-1/+52
|
* Attributes with :string type should not be given the type passed in model ↵Jim Herzberg2011-05-181-1/+7
| | | | serialization options. Closes #1058
* Methods that return nil should not be considered YAMLJoshua Wehner2011-05-101-0/+4
|
* Rename test directory to match code directoryJohn Firebaugh2011-04-062-0/+279
Hopefully "serializeration" is not an in joke that I missed.