Rakefile in docparser-0.2.2 vs Rakefile in docparser-0.2.3
- old
+ new
@@ -11,12 +11,12 @@
end
task test: :rubocop
task :rubocop do
- puts "Running Rubocop #{Rubocop::Version::STRING}"
+ puts "Running Rubocop #{RuboCop::Version::STRING}"
args = FileList['**/*.rb', 'Rakefile', 'docparser.gemspec', 'Gemfile']
- cli = Rubocop::CLI.new
+ cli = RuboCop::CLI.new
fail unless cli.run(args) == 0
end
task default: :test