Remove rake analysis, use bundle exec rubocop now.

This commit is contained in:
Jordon Bedwell 2016-01-05 12:30:23 -06:00
parent 8e68de2740
commit 4cde2ad41c
1 changed files with 0 additions and 42 deletions

View File

@ -1,42 +0,0 @@
#############################################################################
#
# Analyze the quality of the Jekyll source code (requires Docker)
#
#############################################################################
task :analysis do
require "jekyll/utils/ansi"
require "open3"
cmd = [
"docker", "run", "--rm", "--env=CODE_PATH=#{Dir.pwd}", \
"--volume='#{Dir.pwd}:/code'", "--volume=/var/run/docker.sock:/var/run/docker.sock", \
"--volume=/tmp/cc:/tmp/cc", "-i", "codeclimate/codeclimate", "analyze"
]
ansi = Jekyll::Utils::Ansi
file = File.open(".analysis", "w+")
Open3.popen3(cmd.shelljoin) do |_, out, err, _|
while data = out.gets
file.write data
if data =~ /\A==/
$stdout.print ansi.yellow(data)
elsif data !~ %r!\A[0-9\-]+!
$stdout.puts data
else
h, d = data.split(":", 2)
$stdout.print ansi.cyan(h)
$stdout.print ":", d
end
end
while data = err.gets
file.write data
$stderr.print ansi.red(data)
end
end
file.close
end