drnic / newgem

newgem - New Gem Generator for RubyGems

This URL has Read+Write access

newgem / Rakefile
5ed956eb » drnic 2009-06-29 renaming cucumberfeatures f... 1 gem 'hoe', '>= 2.3.0'
2 require 'hoe'
bb15c681 » drnic 2009-06-15 upgrading newgem for hoe 2.... 3 %w[fileutils rubigen].each { |f| require f }
13b846bd » drnic 2009-06-29 Only load newgem.rb once 4 $:.unshift(File.dirname(__FILE__) + "/lib")
b7ef46e5 » drnic 2008-10-20 merged hoe.rb back into Rak... 5
db59ee1e » drnic 2009-06-15 refactor lots of tasks into... 6 Hoe.plugin :newgem
7 Hoe.plugin :website
5ed956eb » drnic 2009-06-29 renaming cucumberfeatures f... 8 Hoe.plugin :cucumberfeatures
db59ee1e » drnic 2009-06-15 refactor lots of tasks into... 9
b7ef46e5 » drnic 2008-10-20 merged hoe.rb back into Rak... 10 # Generate all the Rake tasks
11 # Run 'rake -T' to see list of generated tasks (from gem root directory)
bb15c681 » drnic 2009-06-15 upgrading newgem for hoe 2.... 12 $hoe = Hoe.spec 'newgem' do
5ed956eb » drnic 2009-06-29 renaming cucumberfeatures f... 13 developer 'Dr Nic Williams', 'drnicwilliams@gmail.com'
bb15c681 » drnic 2009-06-15 upgrading newgem for hoe 2.... 14 self.post_install_message = 'PostInstall.txt'
15 self.extra_deps = [
df035eb2 » drnic 2008-10-20 dynamically determine newge... 16 ['activesupport','>= 2.0.2'],
17 ['rubigen',">= #{RubiGen::VERSION}"],
18 ['hoe', ">= #{Hoe::VERSION}"],
b64a9ccb » drnic 2009-06-15 move cucumber's 'rake featu... 19 ['RedCloth','= 4.1.1'], # for website generation
df035eb2 » drnic 2008-10-20 dynamically determine newge... 20 ['syntax','>= 1.0.0']
b7ef46e5 » drnic 2008-10-20 merged hoe.rb back into Rak... 21 ]
5ed956eb » drnic 2009-06-29 renaming cucumberfeatures f... 22 extra_dev_deps << ['cucumber', ">= 0.3.11"]
b7ef46e5 » drnic 2008-10-20 merged hoe.rb back into Rak... 23 end
24
817fbae2 » drnic 2009-06-15 removed the RubyGem.tmbundl... 25 require 'newgem/tasks'
76fdf547 » nicwilliams 2006-10-20 Rakefiles have release task... 26
0e476280 » drnic 2008-10-31 don't run unit tests in def... 27 remove_task :default
5699cb67 » drnic 2008-10-30 features are executed via '... 28 task :default => :features