mirror of
https://github.com/rspec/rspec-metagem.git
synced 2022-11-09 12:09:29 -05:00
528ce21b46
Minor change to the sentence so that it reads easier.
25 lines
503 B
Ruby
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
|
|
|