Drop unused Rake task (#564)
This commit is contained in:
parent
dd956b7b95
commit
7cbe41555a
5
Rakefile
5
Rakefile
|
@ -9,12 +9,11 @@ require "fileutils"
|
||||||
require "overcommit"
|
require "overcommit"
|
||||||
|
|
||||||
RuboCop::RakeTask.new
|
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."
|
desc "When releasing the gem, re-fetch latest cacert.pem from curl.haxx.se. Developer task."
|
||||||
task :update_ssl_ca_file do
|
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`
|
`pushd lib/github_changelog_generator/ssl_certs && curl --remote-name --time-cond cacert.pem https://curl.haxx.se/ca/cacert.pem && popd`
|
||||||
end
|
end
|
||||||
|
|
||||||
task checks: %i[rubocop rspec]
|
task default: %i[rubocop spec]
|
||||||
task default: %i[rubocop rspec]
|
|
||||||
|
|
|
@ -39,7 +39,7 @@ install:
|
||||||
build_script:
|
build_script:
|
||||||
# Install ruby dependencies
|
# Install ruby dependencies
|
||||||
- bundle install --retry 3
|
- bundle install --retry 3
|
||||||
- bundle exec rake checks
|
- bundle exec rake
|
||||||
|
|
||||||
test_script:
|
test_script:
|
||||||
- gem build github_changelog_generator
|
- gem build github_changelog_generator
|
||||||
|
|
Loading…
Reference in New Issue
Block a user