xxxxxxxxxx
module Serializable
extend ActiveSupport::Concern
alias each_serializer serializer
def serializer
"#{params[:controller].classify}s::#{params[:action].classify}Serializer".constantize
end
end
That way you can just call
render json: @person, serializer:
in your controller and it will find the correct serializer.