Rakefile in dmapparser-0.1.0 vs Rakefile in dmapparser-0.2.0
- 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', 'dmapparser.gemspec', 'Gemfile']
- cli = Rubocop::CLI.new
+ cli = RuboCop::CLI.new
cli.run(args)
end
task default: :test