public
Fork of rubys/mars
Description: Yet Another Planet Refactoring
Homepage: http://intertwingly.net/blog/2007/12/19/Yet-Another-Planet-Refactoring
Clone URL: git://github.com/technomancy/mars.git
technomancy (author)
Thu Jul 10 13:52:58 -0700 2008
commit  81be333d61b44ab40e16e1bc1c5f4514456c19e8
tree    88044d9d2fa699e6cc4cb15be69de19bde1d6c08
parent  4da0a0af6cb74fc99eda18cbe67d9fa9c0c9677f
mars / Rakefile.rb
100644 29 lines (22 sloc) 0.664 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# -*- ruby -*-
 
$LOAD_PATH.unshift(File.dirname(__FILE__) + '/lib/')
 
require 'rubygems'
require 'hoe'
require 'planet'
require 'rake/testtask'
 
Hoe.new('mars', Planet::VERSION) do |p|
  p.developer('Sam Ruby', '')
  p.url = 'http://github.com/rubys/mars'
 
  p.extra_deps << ['addressable']
  p.extra_deps << ['idn']
  # p.extra_deps << ['rfeedparser']
  p.extra_deps << ['html5lib', '>=0.10.1']
  # p.add_development_dependency 'test-spec'
  p.extra_deps << ['test-spec']
 
  # TODO: one-of-many dependency between libxml, expat, and rexml
  # p.extra_deps << ['libxml-ruby']
end
 
task :spec do
  Dir['tools/*.spec'].each {|spec| load spec}
end
# vim: syntax=Ruby