Skip to content

Commit

Permalink
(maint) Fix rubocop failure from recent PR
Browse files Browse the repository at this point in the history
We recently added a required bundler version to the ruby version in the
Gemspec. Rubocop doesn't like the syntax we used.
  • Loading branch information
mcdonaldseanp committed Sep 11, 2023
1 parent 6d12f08 commit c1bf2f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ ENV['BOLT_DISABLE_ANALYTICS'] = 'true'
# Disable warning that Bolt may be installed as a gem
ENV['BOLT_GEM'] = 'true'

ruby '>= 2.7.7', :bundler => ">= 2.3.4"
ruby '>= 2.7.7', bundler: ">= 2.3.4"

gemspec

Expand Down

0 comments on commit c1bf2f0

Please sign in to comment.