Update Rubocop to 0.51.0 (#6444)

Merge pull request 6444
This commit is contained in:
jekyllbot
2017-10-19 14:22:36 -04:00
committed by GitHub
parent 32d38e68ef
commit e7f1ce2e2b
10 changed files with 8 additions and 14 deletions

View File

@@ -156,7 +156,7 @@ end
When(%r!^I run jekyll(.*)$!) do |args|
run_jekyll(args)
if args.include?("--verbose") || ENV["DEBUG"]
$stderr.puts "\n#{jekyll_run_output}\n"
warn "\n#{jekyll_run_output}\n"
end
end
@@ -165,7 +165,7 @@ end
When(%r!^I run bundle(.*)$!) do |args|
run_bundle(args)
if args.include?("--verbose") || ENV["DEBUG"]
$stderr.puts "\n#{jekyll_run_output}\n"
warn "\n#{jekyll_run_output}\n"
end
end
@@ -174,7 +174,7 @@ end
When(%r!^I run gem(.*)$!) do |args|
run_rubygem(args)
if args.include?("--verbose") || ENV["DEBUG"]
$stderr.puts "\n#{jekyll_run_output}\n"
warn "\n#{jekyll_run_output}\n"
end
end