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

@ -22,9 +22,11 @@
* URL helpers used inside of Engines now work properly.
* Serializers now can filter attributes with `only` and `except`:
```
UserSerializer.new(user, only: [:first_name, :last_name])
UserSerializer.new(user, except: :first_name)
```
* Basic Mongoid support. We now include our mixins in the right place.