Enforce Style/FrozenStringLiteralComment. (#6265)

Merge pull request 6265
This commit is contained in:
Parker Moore
2017-08-03 21:27:32 -04:00
committed by jekyllbot
parent f9f05e3f75
commit 7cf5f51ca2
133 changed files with 264 additions and 12 deletions

View File

@@ -1,3 +1,5 @@
# frozen_string_literal: true
require "fileutils"
require "colorator"
require "cucumber/formatter/console"

View File

@@ -1,3 +1,5 @@
# frozen_string_literal: true
require "fileutils"
require "jekyll"
require "time"
@@ -107,7 +109,8 @@ def run_in_shell(*args)
File.write(Paths.status_file, p.exitstatus)
File.open(Paths.output_file, "wb") do |f|
f.puts "$ " << args.join(" ")
f.print "$ "
f.puts args.join(" ")
f.puts output
f.puts "EXIT STATUS: #{p.exitstatus}"
end