Skip to content

Commit

Permalink
FIX: Add comma after last param of a multiline method call to satisfy…
Browse files Browse the repository at this point in the history
… Hound CI
  • Loading branch information
bsodmike committed Oct 18, 2016
1 parent f8d72fb commit 18fe26f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/shoulda/matchers/rails_shim.rb
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def self.serialized_attributes_for(model)
# Rails 5+
model.columns.select do |column|
model.type_for_attribute(column.name).is_a?(
::ActiveRecord::Type::Serialized
::ActiveRecord::Type::Serialized,
)
end.inject({}) do |hash, column|
hash[column.name.to_s] = model.type_for_attribute(column.name).coder
Expand Down

0 comments on commit 18fe26f

Please sign in to comment.