Rakefile in dmapparser-0.0.2 vs Rakefile in dmapparser-0.1.0
- old
+ new
@@ -14,9 +14,9 @@
task :rubocop do
puts "Running Rubocop #{Rubocop::Version::STRING}"
args = FileList['**/*.rb', 'Rakefile', 'dmapparser.gemspec', 'Gemfile']
cli = Rubocop::CLI.new
- fail unless cli.run(['-a'] + args) == 0
+ cli.run(args)
end
task default: :test