public
Description: newjs - create new JavaScript libraries
Homepage: http://newjs.rubyforge.org
Clone URL: git://github.com/drnic/newjs.git
drnic (author)
Mon Jul 27 07:26:50 -0700 2009
commit  67b29d038bf46defe3acfeba0fc6783afdbef444
tree    377cddc357eae7b9c20ddd6107c715fec9bc1479
parent  d85337a3d5809878b78c41133a61a040aca3d103
newjs / Rakefile
100644 18 lines (13 sloc) 0.371 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
gem 'hoe', '>= 2.3'
require 'hoe'
require './lib/newjs'
 
Hoe.plugin :newgem
Hoe.plugin :website
Hoe.plugin :cucumberfeatures
 
Hoe.spec('newjs') do
  developer 'Dr Nic Williams', 'drnicwilliams@gmail.com'
  extra_dev_deps << ['newgem', ">= #{::Newgem::VERSION}"]
  $hoe = self
end
 
Dir['tasks/**/*.rake'].each { |t| load t }
 
task :default => [:features]