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

32 lines
920 B
Text
Raw Normal View History

2009-06-29 12:18:55 -04:00
require 'rubygems'
require 'rake'
require 'fileutils'
require 'pathname'
2009-06-29 12:18:55 -04:00
begin
# require 'jeweler'
# Jeweler::Tasks.new do |gem|
# gem.name = "rspec-meta"
# gem.summary = "pulls in the other rspec gems"
# gem.email = "dchelimsky@gmail.com;chad.humphries@gmail.com"
# gem.homepage = "http://github.com/rspec/meta"
# gem.authors = ["David Chelimsky", "Chad Humphries"]
# gem.add_dependency "rspec-core", ">= 2.0.0.a1"
# gem.add_dependency "rspec-expectations", ">= 2.0.0.a1"
# gem.add_dependency "rspec-mocks", ">= 2.0.0.a1"
# gem.add_development_dependency 'git'
2009-06-29 12:18:55 -04:00
# gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
# end
2009-10-09 10:23:59 -04:00
# Jeweler::GemcutterTasks.new
2009-06-29 12:18:55 -04:00
rescue LoadError
puts "Jeweler (or a dependency) not available. Install it with: sudo gem install jeweler"
end
2009-09-21 23:10:37 -04:00
task :clobber do
rm_rf 'pkg'
end
2009-11-06 10:51:09 -05:00
task :default do
2009-06-29 14:08:54 -04:00
end