зеркало из https://github.com/github/ruby.git
[rubygems/rubygems] Fix linting and make Style/RedundantInterpolation happy
Signed-off-by: Utkarsh Gupta <utkarsh@debian.org> https://github.com/rubygems/rubygems/commit/83e330fa87
This commit is contained in:
Родитель
4875a96edd
Коммит
215f7c3165
|
@ -155,7 +155,7 @@ RSpec.describe "bundle gem" do
|
||||||
it "generates a gem skeleton with rubocop" do
|
it "generates a gem skeleton with rubocop" do
|
||||||
gem_skeleton_assertions
|
gem_skeleton_assertions
|
||||||
expect(bundled_app("test-gem/Rakefile")).to read_as(
|
expect(bundled_app("test-gem/Rakefile")).to read_as(
|
||||||
include('# frozen_string_literal: true').
|
include("# frozen_string_literal: true").
|
||||||
and(include('require "rubocop/rake_task"').
|
and(include('require "rubocop/rake_task"').
|
||||||
and(include("RuboCop::RakeTask.new").
|
and(include("RuboCop::RakeTask.new").
|
||||||
and(match(/default:.+:rubocop/))))
|
and(match(/default:.+:rubocop/))))
|
||||||
|
@ -176,11 +176,11 @@ RSpec.describe "bundle gem" do
|
||||||
end
|
end
|
||||||
|
|
||||||
it "run rubocop inside the generated gem with no offenses" do
|
it "run rubocop inside the generated gem with no offenses" do
|
||||||
prepare_gemspec(bundled_app("#{gem_name}", "#{gem_name}.gemspec"))
|
prepare_gemspec(bundled_app(gem_name, "#{gem_name}.gemspec"))
|
||||||
gems = ["rake", "rubocop"]
|
gems = ["rake", "rubocop"]
|
||||||
path = Bundler.feature_flag.default_install_uses_path? ? local_gem_path(:base => bundled_app("#{gem_name}")) : system_gem_path
|
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
|
realworld_system_gems gems, :path => path
|
||||||
bundle "exec rubocop --ignore-parent-exclusion", :dir => bundled_app("#{gem_name}")
|
bundle "exec rubocop --ignore-parent-exclusion", :dir => bundled_app(gem_name)
|
||||||
expect($?.exitstatus).to eq(0) if exitstatus
|
expect($?.exitstatus).to eq(0) if exitstatus
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Загрузка…
Ссылка в новой задаче