Rakefile in s3repo-1.0.0 vs Rakefile in s3repo-2.0.0

- 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', 'bin/*'] task.fail_on_error = true end -task default: [:spec, :rubocop, :build, :install] +task default: %i[spec rubocop build install]