active_model_serializers/test/fixtures
Benjamin Fleischer d7de53ce30 Consider evaluating association in serializer context
For discussion:

Consider evaluating association in serializer context

That way, associations are really just anything that
can be conditionally included.  They no longer
have to actually be methods on the object or serializer.

e.g.

```diff
has_many :comments do
- last(1)
+ Comment.active.for_serialization(object).last(1)
end
```
2015-12-29 22:16:42 -06:00
..
active_record.rb Remove url options 2015-09-07 12:13:19 -03:00
poro.rb Consider evaluating association in serializer context 2015-12-29 22:16:42 -06:00