Merge remote-tracking branch 'upstream/master' into feature/adapter

This commit is contained in:
Tema Bolshakov
2014-08-29 12:55:20 +04:00
5 changed files with 10 additions and 7 deletions

View File

@@ -31,7 +31,7 @@ serializers:
```ruby
class PostSerializer < ActiveModel::Serializer
attribute :title, :body
attributes :title, :body
has_many :comments
@@ -43,7 +43,7 @@ and
```ruby
class CommentSerializer < ActiveModel::Serializer
attribute :name, :body
attributes :name, :body
belongs_to :post
@@ -121,7 +121,7 @@ The generated seralizer will contain basic `attributes` and
```ruby
class PostSerializer < ActiveModel::Serializer
attribute :title, :body
attributes :title, :body
has_many :comments
@@ -133,7 +133,7 @@ and
```ruby
class CommentSerializer < ActiveModel::Serializer
attribute :name, :body
attributes :name, :body
belongs_to :post_id