From 7cbe41555a42f15be45cf3161ea79c962d2e8825 Mon Sep 17 00:00:00 2001 From: Olle Jonsson Date: Wed, 4 Oct 2017 09:06:49 +0200 Subject: [PATCH] Drop unused Rake task (#564) --- Rakefile | 5 ++--- appveyor.yml | 2 +- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/Rakefile b/Rakefile index 15fbdc2..80d013a 100644 --- a/Rakefile +++ b/Rakefile @@ -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] diff --git a/appveyor.yml b/appveyor.yml index 8d26c01..80d65fe 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -39,7 +39,7 @@ install: build_script: # Install ruby dependencies - bundle install --retry 3 - - bundle exec rake checks + - bundle exec rake test_script: - gem build github_changelog_generator