From 96bb004fc6e67cdf1b873f11ad5f8efd06949797 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafael=20Mendon=C3=A7a=20Fran=C3=A7a?= Date: Wed, 10 Jun 2015 08:50:39 -0300 Subject: Revert "Add code example for include option of AM::Serialization#serializable_hash" This reverts commit 3d949f34816d6eca0a6b59cfa08d91f36e8e64dd. This was already documented in other PR. --- activemodel/lib/active_model/serialization.rb | 15 +-------------- 1 file changed, 1 insertion(+), 14 deletions(-) (limited to 'activemodel') diff --git a/activemodel/lib/active_model/serialization.rb b/activemodel/lib/active_model/serialization.rb index 144ee2ce6e..f95849eb84 100644 --- a/activemodel/lib/active_model/serialization.rb +++ b/activemodel/lib/active_model/serialization.rb @@ -72,20 +72,10 @@ module ActiveModel module Serialization # Returns a serialized hash of your object. # - # class Address - # include ActiveModel::Serialization - # - # attr_accessor :city, :street - # - # def attributes - # {'city' => nil, 'street' => nil} - # end - # end - # # class Person # include ActiveModel::Serialization # - # attr_accessor :name, :age, :address + # attr_accessor :name, :age # # def attributes # {'name' => nil, 'age' => nil} @@ -99,9 +89,6 @@ module ActiveModel # person = Person.new # person.name = 'bob' # person.age = 22 - # person.address = Address.new - # person.address.city = 'New York' - # person.address.street = 'Main St' # person.serializable_hash # => {"name"=>"bob", "age"=>22} # person.serializable_hash(only: :name) # => {"name"=>"bob"} # person.serializable_hash(except: :name) # => {"age"=>22} -- cgit v1.2.3