Execute Order 66.

A manual version tweak in the Gemfile is required because rubocop 
updated its 
unicode-display_width dependency version:
* OLD - '~> 1.4.0'
* NEW - '< 1.6, >= 1.4.0'
Bundler wanted to install v1.5.0 for rubocop v0.66, but fails to update 
rubocop
because unicode-display_width v1.5.0 will not work with rubocop v0.65.
This commit is contained in:
rick olson 2019-03-20 13:27:31 -06:00
parent a2161e10a8
commit 6167052fc7

View File

@ -24,7 +24,7 @@ group :test do
gem 'rack-test', '>= 0.6', require: 'rack/test' gem 'rack-test', '>= 0.6', require: 'rack/test'
gem 'rspec', '~> 3.7' gem 'rspec', '~> 3.7'
gem 'rspec_junit_formatter', '~> 0.4' gem 'rspec_junit_formatter', '~> 0.4'
gem 'rubocop', '~> 0.65.0' gem 'rubocop', '~> 0.66.0'
gem 'simplecov' gem 'simplecov'
gem 'typhoeus', '~> 1.3', git: 'https://github.com/typhoeus/typhoeus.git', gem 'typhoeus', '~> 1.3', git: 'https://github.com/typhoeus/typhoeus.git',
require: 'typhoeus' require: 'typhoeus'