зеркало из https://github.com/github/ruby.git
[rubygems/rubygems] Use latest version of rubocop for RUBY_VERSION > 2.4
With older versions of rubocop, the dependency on `jaro_winkler` seems to be a pain. However, in the later versions of rubocop, this dependency was dropped. So we only need to use the older version for ruby2.3. Signed-off-by: Utkarsh Gupta <utkarsh@debian.org> https://github.com/rubygems/rubygems/commit/9cd87eaee3
This commit is contained in:
Родитель
077dcacb08
Коммит
d0810fdee4
|
@ -177,7 +177,8 @@ RSpec.describe "bundle gem" do
|
|||
|
||||
it "run rubocop inside the generated gem with no offenses" do
|
||||
prepare_gemspec(bundled_app(gem_name, "#{gem_name}.gemspec"))
|
||||
gems = ["rake", "rubocop -v 0.80.1"]
|
||||
rubocop_version = RUBY_VERSION > "2.4" ? "0.85.1" : "0.80.1"
|
||||
gems = ["rake", "rubocop -v #{rubocop_version}"]
|
||||
path = Bundler.feature_flag.default_install_uses_path? ? local_gem_path(:base => bundled_app(gem_name)) : system_gem_path
|
||||
realworld_system_gems gems, :path => path
|
||||
bundle "exec rubocop --config .rubocop.yml", :dir => bundled_app(gem_name)
|
||||
|
|
Загрузка…
Ссылка в новой задаче