Rubocop autocorrect indentation

This commit is contained in:
Benjamin Fleischer 2016-02-08 17:39:45 -06:00
parent e51597480a
commit dcbe4ef9e2

View File

@ -157,10 +157,10 @@ module ActiveModel
include_tree = IncludeTree.from_include_args(requested_associations) include_tree = IncludeTree.from_include_args(requested_associations)
serializer.associations(include_tree).each_with_object({}) do |association, hash| serializer.associations(include_tree).each_with_object({}) do |association, hash|
hash[association.key] = JsonApi::Association.new(serializer, hash[association.key] = JsonApi::Association.new(serializer,
association.serializer, association.serializer,
association.options, association.options,
association.links, association.links,
association.meta) association.meta)
.as_json .as_json
end end
end end