active_model_serializers/lib
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
..
action_controller Add config.serializer_lookup_enabled that defaults true 2015-11-30 00:20:58 -06:00
active_model Consider evaluating association in serializer context 2015-12-29 22:16:42 -06:00
active_model_serializers Fix typo 2015-11-24 07:22:59 -08:00
generators/serializer fix description of USAGE 2015-12-01 08:54:27 +09:00
grape Grape formatter feature requested in #1258 2015-12-10 10:06:40 +00:00
active_model_serializers.rb Remove ActiveModelSerializers.silence_warnings dead code 2015-12-23 19:25:48 -02:00