Rakefile in prospectus_repotimer-0.0.1 vs Rakefile in prospectus_repotimer-0.0.2
- old
+ new
@@ -5,10 +5,9 @@
desc 'Run tests'
RSpec::Core::RakeTask.new(:spec)
desc 'Run Rubocop on the gem'
RuboCop::RakeTask.new(:rubocop) do |task|
- task.patterns = ['lib/**/*.rb', 'spec/**/*.rb']
task.fail_on_error = true
end
-task default: [:spec, :rubocop, :build, :install]
+task default: %i[spec rubocop build install]