Drop unused Rake task (#564)

This commit is contained in:
Olle Jonsson
2017-10-04 09:06:49 +02:00
committed by GitHub
parent dd956b7b95
commit 7cbe41555a
2 changed files with 3 additions and 4 deletions
+2 -3
View File
@@ -9,12 +9,11 @@ require "fileutils"
require "overcommit"
RuboCop::RakeTask.new
RSpec::Core::RakeTask.new(:rspec)
RSpec::Core::RakeTask.new
desc "When releasing the gem, re-fetch latest cacert.pem from curl.haxx.se. Developer task."
task :update_ssl_ca_file do
`pushd lib/github_changelog_generator/ssl_certs && curl --remote-name --time-cond cacert.pem https://curl.haxx.se/ca/cacert.pem && popd`
end
task checks: %i[rubocop rspec]
task default: %i[rubocop rspec]
task default: %i[rubocop spec]