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)
Fri Jun 27 09:15:35 -0700 2008
commit  ba8c737efc5e9123458d085dae8701e32560b971
tree    290b08bb24e8cf523950cd50e966034832c98c6a
parent  0a586b503fd189482796420ada7b11fe3f3e7194
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