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

26 lines
505 B
Text
Raw Normal View History

2010-06-21 21:25:48 -05:00
require "bundler"
Bundler.setup
Bundler::GemHelper.install_tasks
2010-06-21 21:25:48 -05:00
2009-06-29 12:18:55 -04:00
require 'rake'
require 'fileutils'
require 'pathname'
2009-06-29 12:18:55 -04:00
2009-09-21 22:10:37 -05:00
task :clobber do
rm_rf 'pkg'
end
task :default do
puts "Nothing to do for the default task"
end
2013-11-07 19:46:34 -08:00
task :verify_private_key_present do
private_key = File.expand_path('~/.gem/rspec-gem-private_key.pem')
2014-03-16 18:23:22 -04:00
unless File.exist?(private_key)
2013-11-07 19:46:34 -08:00
raise "Your private key is not present. This gem should not be built without that."
end
end
task :build => :verify_private_key_present