By default, the gem active_model_serializer (from rubygems, the version 0.8.1) looks for the serializers in app/serializers
.
However, I have a shared
directory at the root of Rails project sharing models, serializers, specs with other projects as a git subtree.
How to specify to active_model_serializer to looks for files in app/serializers
and shared/serializers
?
Thanks.