Skip to content

Commit

Permalink
Upgrade rubocop to 1.22.3
Browse files Browse the repository at this point in the history
  • Loading branch information
jaimevelaz committed Oct 28, 2021
1 parent 3e9ba51 commit fdb124b
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 43 deletions.
74 changes: 36 additions & 38 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,60 +2,58 @@ PATH
remote: .
specs:
sequra-style (0.1.1)
rubocop (~> 0.93.1)
rubocop-performance (~> 1.8.1)
rubocop-rails (~> 2.8.1)
rubocop-rspec (~> 1.44.1)
rubocop (~> 1.22.3)
rubocop-performance (~> 1.11.5)
rubocop-rails (~> 2.12.4)
rubocop-rspec (~> 2.5.0)

GEM
remote: https://rubygems.org/
specs:
activesupport (6.0.3.4)
activesupport (6.1.4.1)
concurrent-ruby (~> 1.0, >= 1.0.2)
i18n (>= 0.7, < 2)
minitest (~> 5.1)
tzinfo (~> 1.1)
zeitwerk (~> 2.2, >= 2.2.2)
ast (2.4.1)
concurrent-ruby (1.1.7)
i18n (1.8.5)
i18n (>= 1.6, < 2)
minitest (>= 5.1)
tzinfo (~> 2.0)
zeitwerk (~> 2.3)
ast (2.4.2)
concurrent-ruby (1.1.9)
i18n (1.8.10)
concurrent-ruby (~> 1.0)
minitest (5.14.2)
parallel (1.20.0)
parser (2.7.2.0)
minitest (5.14.4)
parallel (1.21.0)
parser (3.0.2.0)
ast (~> 2.4.1)
rack (2.2.3)
rainbow (3.0.0)
rake (13.0.1)
regexp_parser (1.8.2)
rexml (3.2.4)
rubocop (0.93.1)
rake (13.0.6)
regexp_parser (2.1.1)
rexml (3.2.5)
rubocop (1.22.3)
parallel (~> 1.10)
parser (>= 2.7.1.5)
parser (>= 3.0.0.0)
rainbow (>= 2.2.2, < 4.0)
regexp_parser (>= 1.8)
regexp_parser (>= 1.8, < 3.0)
rexml
rubocop-ast (>= 0.6.0)
rubocop-ast (>= 1.12.0, < 2.0)
ruby-progressbar (~> 1.7)
unicode-display_width (>= 1.4.0, < 2.0)
rubocop-ast (1.1.1)
parser (>= 2.7.1.5)
rubocop-performance (1.8.1)
rubocop (>= 0.87.0)
unicode-display_width (>= 1.4.0, < 3.0)
rubocop-ast (1.12.0)
parser (>= 3.0.1.1)
rubocop-performance (1.11.5)
rubocop (>= 1.7.0, < 2.0)
rubocop-ast (>= 0.4.0)
rubocop-rails (2.8.1)
rubocop-rails (2.12.4)
activesupport (>= 4.2.0)
rack (>= 1.1)
rubocop (>= 0.87.0)
rubocop-rspec (1.44.1)
rubocop (~> 0.87)
rubocop-ast (>= 0.7.1)
ruby-progressbar (1.10.1)
thread_safe (0.3.6)
tzinfo (1.2.8)
thread_safe (~> 0.1)
unicode-display_width (1.7.0)
zeitwerk (2.4.1)
rubocop (>= 1.7.0, < 2.0)
rubocop-rspec (2.5.0)
rubocop (~> 1.19)
ruby-progressbar (1.11.0)
tzinfo (2.0.4)
concurrent-ruby (~> 1.0)
unicode-display_width (2.1.0)
zeitwerk (2.5.1)

PLATFORMS
ruby
Expand Down
2 changes: 1 addition & 1 deletion lib/sequra/style/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module Sequra
module Style
VERSION = "0.1.1"
VERSION = "0.2.0"
end
end
8 changes: 4 additions & 4 deletions sequra-style.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@ Gem::Specification.new do |spec|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]

spec.add_dependency "rubocop", "~> 0.93.1"
spec.add_dependency "rubocop-performance", "~> 1.8.1"
spec.add_dependency "rubocop-rails", "~> 2.8.1"
spec.add_dependency "rubocop-rspec", "~> 1.44.1"
spec.add_dependency "rubocop", "~> 1.22.3"
spec.add_dependency "rubocop-performance", "~> 1.11.5"
spec.add_dependency "rubocop-rails", "~> 2.12.4"
spec.add_dependency "rubocop-rspec", "~> 2.5.0"

spec.add_development_dependency "bundler", "~> 2.1.4"
spec.add_development_dependency "rake", "~> 13.0.1"
Expand Down

0 comments on commit fdb124b

Please sign in to comment.