Skip to content

Commit

Permalink
Update version constraint from ~> to >=
Browse files Browse the repository at this point in the history
  • Loading branch information
bensheldon committed Oct 28, 2022
1 parent 90e921a commit d959ddd
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ PATH
remote: .
specs:
rubocop-github (0.19.0)
rubocop (~> 1.37)
rubocop-performance (~> 1.15)
rubocop-rails (~> 2.17)
rubocop (>= 1.37)
rubocop-performance (>= 1.15)
rubocop-rails (>= 2.17)

GEM
remote: https://rubygems.org/
Expand Down
6 changes: 3 additions & 3 deletions rubocop-github.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ Gem::Specification.new do |s|

s.files = Dir["README.md", "STYLEGUIDE.md", "LICENSE", "config/*.yml", "lib/**/*.rb", "guides/*.md"]

s.add_dependency "rubocop", "~> 1.37"
s.add_dependency "rubocop-performance", "~> 1.15"
s.add_dependency "rubocop-rails", "~> 2.17"
s.add_dependency "rubocop", ">= 1.37"
s.add_dependency "rubocop-performance", ">= 1.15"
s.add_dependency "rubocop-rails", ">= 2.17"

s.add_development_dependency "actionview"
s.add_development_dependency "minitest"
Expand Down

0 comments on commit d959ddd

Please sign in to comment.