Rakefile in meowcop-2.3.0 vs Rakefile in meowcop-2.3.1

- old
+ new

@@ -1,9 +1,9 @@ require "bundler/gem_tasks" require "rake/testtask" -task :default => [:test, :smoke, :lint] +task :default => [:test, :smoke] Rake::TestTask.new do |t| t.libs << "test" t.test_files = FileList["test/**/*_test.rb"] t.verbose = true @@ -11,11 +11,6 @@ desc "Run smoke tests" task :smoke do sh "docker build -t meowcop/smoke -f test/smoke/Dockerfile ." sh "docker run -it --rm meowcop/smoke" -end - -desc "Lint" -task :lint do - sh "bundle exec rubocop --config config/rubocop.yml" end