1
0
Fork 0
mirror of https://github.com/rspec/rspec-metagem.git synced 2022-11-09 12:09:29 -05:00
rspec--rspec-metagem/Rakefile
Steven Church 528ce21b46
Update rakefile
Minor change to the sentence so that it reads easier.
2020-07-24 11:49:21 +01:00

25 lines
503 B
Ruby

require "bundler"
Bundler.setup
Bundler::GemHelper.install_tasks
require 'rake'
require 'fileutils'
require 'pathname'
task :clobber do
rm_rf 'pkg'
end
task :default do
puts "Nothing to do for the default task"
end
task :verify_private_key_present do
private_key = File.expand_path('~/.gem/rspec-gem-private_key.pem')
unless File.exist?(private_key)
raise "Your private key is not present. This gem should not be built without it."
end
end
task :build => :verify_private_key_present