DEV: Upgrade highline gem to latest (#10471)

Currently we have pinned highline to version 1.7.0. This is the gem that
we use to have an interactive command line for tasks like `rake
admin:create`.

Upgrading to the latest version 2.0.3 will remove ruby 2.7 deprecation
warnings.

I'm not sure why *this* gem was pinned. I manually executed a couple of
our rake tasks that use this and everything seems fine.
This commit is contained in:
Blake Erickson
2020-08-19 09:15:23 -06:00
committed by GitHub
parent a27b6770fd
commit c767fb1ed3
2 changed files with 3 additions and 4 deletions

View File

@@ -125,8 +125,7 @@ gem 'mini_scheduler'
gem 'execjs', require: false
gem 'mini_racer'
# TODO: determine why highline is being held back and upgrade to latest
gem 'highline', '~> 1.7.0', require: false
gem 'highline', require: false
gem 'rack'