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
503 B
Text
Raw Normal View History

2010-06-21 22:25:48 -04:00
require "bundler"
Bundler.setup
Bundler::GemHelper.install_tasks
2010-06-21 22:25:48 -04: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 23:10:37 -04:00
task :clobber do
rm_rf 'pkg'
end
task :default do
puts "Nothing to do for the default task"
end
2013-11-07 22:46:34 -05: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)
raise "Your private key is not present. This gem should not be built without it."
2013-11-07 22:46:34 -05:00
end
end
task :build => :verify_private_key_present