2010-06-21 21:25:48 -05:00
|
|
|
require "bundler"
|
|
|
|
Bundler.setup
|
2010-09-02 13:17:16 -07:00
|
|
|
Bundler::GemHelper.install_tasks
|
2010-06-21 21:25:48 -05:00
|
|
|
|
2009-06-29 12:18:55 -04:00
|
|
|
require 'rake'
|
2009-09-26 20:12:51 -04:00
|
|
|
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
|
|
|
|
|
2010-09-02 13:17:16 -07:00
|
|
|
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
|
|
|
|
|