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
commit  71c625aa563b43acff9a6594e50253c22b91caec
tree    f121a5832c4478e434d889720a3cbf720854aa3d
parent  62e31bbe207f3299deac5789c9beb24c444e494c
mars / Rakefile.rb
100644 27 lines (21 sloc) 0.593 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
# -*- 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 << ['libxml-ruby']
  p.extra_deps << ['html5lib', '>=0.10.1']
  # p.add_development_dependency 'test-spec'
  p.extra_deps << ['test-spec']
end
 
task :spec do
  Dir['tools/*.spec'].each {|spec| load spec}
end
# vim: syntax=Ruby