Skip to content

Commit

Permalink
Avoid rubocop errors by skipping the version of rubocop with a bug (#496
Browse files Browse the repository at this point in the history
)
  • Loading branch information
dylanahsmith committed Jun 14, 2021
1 parent b7564e7 commit ef855f9
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 4 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@
source "https://rubygems.org"
gemspec

gem "rubocop", "~> 1.5"
# Skip rubocop 1.16.1 until the next release which will include the fix:
# https://github.com/rubocop/rubocop/pull/9862
gem "rubocop", "~> 1.5", "!= 1.16.1"

gem "rubocop-shopify", "~> 2.0.1", require: false

gem "mysql2", "~> 0.5.3", platform: :mri
Expand Down
4 changes: 3 additions & 1 deletion gemfiles/Gemfile.latest-release
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
source "https://rubygems.org"
gemspec path: ".."

gem "rubocop", "~> 1.5"
# Skip rubocop 1.16.1 until the next release which will include the fix:
# https://github.com/rubocop/rubocop/pull/9862
gem "rubocop", "~> 1.5", "!= 1.16.1"
gem "rubocop-shopify", "~> 2.0.1", require: false

gem "activerecord"
Expand Down

0 comments on commit ef855f9

Please sign in to comment.