active_model_serializers/test/serializers
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
..
adapter_for_test.rb [DOCS] Refactor, update, create documentation [ci skip] 2015-12-14 14:38:29 -06:00
association_macros_test.rb Remove traces of embed option. 2015-08-31 01:26:22 +02:00
associations_test.rb Consider evaluating association in serializer context 2015-12-29 22:16:42 -06:00
attribute_test.rb Handle conflicts between key names and serializer methods 2015-12-02 17:20:22 -06:00
attributes_test.rb Extract attributes filtering from serializer into adapter. 2015-10-05 08:21:26 +02:00
cache_test.rb Match file paths with spaces in caller regexp 2015-12-02 06:17:34 -07:00
configuration_test.rb [DOCS] Refactor, update, create documentation [ci skip] 2015-12-14 14:38:29 -06:00
fieldset_test.rb Extract attributes filtering from serializer into adapter. 2015-10-05 08:21:26 +02:00
meta_test.rb Move meta/meta_key handling inside adapter. 2015-10-05 19:06:50 +02:00
options_test.rb Makes passed in options accessible inside serializers 2015-03-11 14:53:57 -03:00
root_test.rb Rubocop: Consistent spacing 2015-09-03 20:51:40 -05:00
serializer_for_test.rb Merge pull request #1371 from bf4/documentation_updates 2015-12-20 22:30:44 -06:00