Skip to content

Commit

Permalink
Merge pull request #29 from ualbertalib/dependabot/bundler/rubocop-pe…
Browse files Browse the repository at this point in the history
…rformance-1.20.2

Bump rubocop-performance from 1.18.0 to 1.20.2
  • Loading branch information
pgwillia authored Jan 30, 2024
2 parents 8d23b34 + 89ca868 commit 1f027a4
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ group :development, :test do
gem 'rake', '~> 13.1'
gem 'rubocop', '~> 1.60'
gem 'rubocop-minitest', '~> 0.34.5'
gem 'rubocop-performance', '~> 1.12'
gem 'rubocop-performance', '~> 1.20'
gem 'rubocop-rake', '~> 0.6.0'
gem 'simplecov', '~> 0.22.0'
gem 'vcr', '5.0'
Expand Down
8 changes: 4 additions & 4 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,9 @@ GEM
rubocop-minitest (0.34.5)
rubocop (>= 1.39, < 2.0)
rubocop-ast (>= 1.30.0, < 2.0)
rubocop-performance (1.18.0)
rubocop (>= 1.7.0, < 2.0)
rubocop-ast (>= 0.4.0)
rubocop-performance (1.20.2)
rubocop (>= 1.48.1, < 2.0)
rubocop-ast (>= 1.30.0, < 2.0)
rubocop-rake (0.6.0)
rubocop (~> 1.0)
ruby-progressbar (1.13.0)
Expand Down Expand Up @@ -104,7 +104,7 @@ DEPENDENCIES
rake (~> 13.1)
rubocop (~> 1.60)
rubocop-minitest (~> 0.34.5)
rubocop-performance (~> 1.12)
rubocop-performance (~> 1.20)
rubocop-rake (~> 0.6.0)
simplecov (~> 0.22.0)
vcr (= 5.0)
Expand Down
2 changes: 1 addition & 1 deletion lib/datacite/doi_response.rb
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ class DOIResponse
def initialize(metadata)
metadata[:data][:attributes].each do |(k, v)|
self.class.attr_accessor(k) unless self.class.method_defined? k.to_sym
send("#{k}=", v)
send(:"#{k}=", v)
end
end
end
Expand Down

0 comments on commit 1f027a4

Please sign in to comment.