diff options
author | Santiago Pastorino <santiago@wyeworks.com> | 2010-08-10 11:53:58 -0300 |
---|---|---|
committer | Santiago Pastorino <santiago@wyeworks.com> | 2010-08-10 11:53:58 -0300 |
commit | a6c6cbfb552102eb974a45e25d21372ed62891b8 (patch) | |
tree | 5fe7b1642c1089b94827a75b1a62e6db9e252e16 /activemodel | |
parent | dd1b33078addb07fa2c2efb133f079be38c45657 (diff) | |
download | rails-a6c6cbfb552102eb974a45e25d21372ed62891b8.tar.gz rails-a6c6cbfb552102eb974a45e25d21372ed62891b8.tar.bz2 rails-a6c6cbfb552102eb974a45e25d21372ed62891b8.zip |
ActiveModel::Base doesn't exist, include_root_in_json is a class_attribute for the classes which includes this module
Diffstat (limited to 'activemodel')
-rw-r--r-- | activemodel/lib/active_model/serializers/json.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/activemodel/lib/active_model/serializers/json.rb b/activemodel/lib/active_model/serializers/json.rb index e1dbc522de..cf1c4a0fed 100644 --- a/activemodel/lib/active_model/serializers/json.rb +++ b/activemodel/lib/active_model/serializers/json.rb @@ -18,9 +18,9 @@ module ActiveModel # Returns a JSON string representing the model. Some configuration can be # passed through +options+. # - # The option <tt>ActiveModel::Base.include_root_in_json</tt> controls the - # top-level behavior of +to_json+. If true (the default) +to_json+ will - # emit a single root node named after the object's type. For example: + # The option <tt>include_root_in_json</tt> controls the top-level behavior + # of +to_json+. If true (the default) +to_json+ will emit a single root + # node named after the object's type. For example: # # konata = User.find(1) # konata.to_json |