Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
Also fixes new rubocop performance offences
  • Loading branch information
tagliala committed Dec 16, 2023
1 parent 412e285 commit 46d3dc1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion test/action_view/models/category.rb
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class Category

def initialize(params = {})
params.each do |attr, value|
public_send("#{attr}=", value)
public_send(:"#{attr}=", value)
end
end

Expand Down
2 changes: 1 addition & 1 deletion test/action_view/models/comment.rb
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class Comment

def initialize(params = {})
params.each do |attr, value|
public_send("#{attr}=", value)
public_send(:"#{attr}=", value)
end
end

Expand Down
2 changes: 1 addition & 1 deletion test/action_view/models/post.rb
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class Post

def initialize(params = {})
params.each do |attr, value|
public_send("#{attr}=", value)
public_send(:"#{attr}=", value)
end
end

Expand Down

0 comments on commit 46d3dc1

Please sign in to comment.