Merge pull request #297 from thetamind/patch-1

Fix code formatting in changelog
This commit is contained in:
Rafael Mendonça França 2013-05-08 12:38:36 -07:00
commit e6e1b3feaa

View File

@ -23,8 +23,10 @@
* Serializers now can filter attributes with `only` and `except`: * Serializers now can filter attributes with `only` and `except`:
```
UserSerializer.new(user, only: [:first_name, :last_name]) UserSerializer.new(user, only: [:first_name, :last_name])
UserSerializer.new(user, except: :first_name) UserSerializer.new(user, except: :first_name)
```
* Basic Mongoid support. We now include our mixins in the right place. * Basic Mongoid support. We now include our mixins in the right place.