drnic / newgem
- Source
- Commits
- Network (20)
- Issues (3)
- Downloads (32)
- Wiki (1)
- Graphs
-
Tree:
67a75cc
newgem / Rakefile
| 5ed956eb » | drnic | 2009-06-29 | 1 | gem 'hoe', '>= 2.3.0' | |
| 2 | require 'hoe' | ||||
| bb15c681 » | drnic | 2009-06-15 | 3 | %w[fileutils rubigen].each { |f| require f } | |
| 13b846bd » | drnic | 2009-06-29 | 4 | $:.unshift(File.dirname(__FILE__) + "/lib") | |
| b7ef46e5 » | drnic | 2008-10-20 | 5 | ||
| db59ee1e » | drnic | 2009-06-15 | 6 | Hoe.plugin :newgem | |
| 7 | Hoe.plugin :website | ||||
| 5ed956eb » | drnic | 2009-06-29 | 8 | Hoe.plugin :cucumberfeatures | |
| db59ee1e » | drnic | 2009-06-15 | 9 | ||
| b7ef46e5 » | drnic | 2008-10-20 | 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 | 12 | $hoe = Hoe.spec 'newgem' do | |
| 5ed956eb » | drnic | 2009-06-29 | 13 | developer 'Dr Nic Williams', 'drnicwilliams@gmail.com' | |
| bb15c681 » | drnic | 2009-06-15 | 14 | self.post_install_message = 'PostInstall.txt' | |
| 15 | self.extra_deps = [ | ||||
| df035eb2 » | drnic | 2008-10-20 | 16 | ['activesupport','>= 2.0.2'], | |
| 17 | ['rubigen',">= #{RubiGen::VERSION}"], | ||||
| 18 | ['hoe', ">= #{Hoe::VERSION}"], | ||||
| b64a9ccb » | drnic | 2009-06-15 | 19 | ['RedCloth','= 4.1.1'], # for website generation | |
| df035eb2 » | drnic | 2008-10-20 | 20 | ['syntax','>= 1.0.0'] | |
| b7ef46e5 » | drnic | 2008-10-20 | 21 | ] | |
| 5ed956eb » | drnic | 2009-06-29 | 22 | extra_dev_deps << ['cucumber', ">= 0.3.11"] | |
| b7ef46e5 » | drnic | 2008-10-20 | 23 | end | |
| 24 | |||||
| 817fbae2 » | drnic | 2009-06-15 | 25 | require 'newgem/tasks' | |
| 76fdf547 » | nicwilliams | 2006-10-20 | 26 | ||
| 0e476280 » | drnic | 2008-10-31 | 27 | remove_task :default | |
| 5699cb67 » | drnic | 2008-10-30 | 28 | task :default => :features | |
