diff options
author | Gaurav Sharma <gaurav2728@gmail.com> | 2015-08-22 04:06:14 +0530 |
---|---|---|
committer | Gaurav Sharma <gaurav2728@gmail.com> | 2015-08-22 04:06:14 +0530 |
commit | 71ed33920306e577c5c8b40d5d7a3c57d2285ce9 (patch) | |
tree | 801e9278e5461cb19d915a2692ff2e85223bd16d /activemodel | |
parent | 90bcb6dea7f8fc8b93b4266180465fc0c0785c01 (diff) | |
download | rails-71ed33920306e577c5c8b40d5d7a3c57d2285ce9.tar.gz rails-71ed33920306e577c5c8b40d5d7a3c57d2285ce9.tar.bz2 rails-71ed33920306e577c5c8b40d5d7a3c57d2285ce9.zip |
discard xml Serialization documentation that is no longer available [ci skip]
Diffstat (limited to 'activemodel')
-rw-r--r-- | activemodel/lib/active_model/serialization.rb | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/activemodel/lib/active_model/serialization.rb b/activemodel/lib/active_model/serialization.rb index 58d68d9620..44bc9efa47 100644 --- a/activemodel/lib/active_model/serialization.rb +++ b/activemodel/lib/active_model/serialization.rb @@ -31,12 +31,10 @@ module ActiveModel # of the attributes hash's keys. In order to override this behavior, take a look # at the private method +read_attribute_for_serialization+. # - # Most of the time though, either the JSON or XML serializations are needed. - # Both of these modules automatically include the - # <tt>ActiveModel::Serialization</tt> module, so there is no need to - # explicitly include it. + # JSON Serialization module is automatically include the <tt>ActiveModel::Serialization</tt> + # module, so there is no need to explicitly include it. # - # A minimal implementation including XML and JSON would be: + # A minimal implementation including JSON would be: # # class Person # include ActiveModel::Serializers::JSON |