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)
Wed Jun 25 16:35:27 -0700 2008
commit  7eaf87996f2bac47b78322f50fb137d94eb94ac2
tree    f5a01bf027b7fae047af8d869a5f155ba5f12181
parent  1cf0fac786bbaba6e7362dce624943a161fc054b
mars / Rakefile.rb
100644 27 lines (21 sloc) 0.589 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 'mars'
require 'rake/testtask'
 
Hoe.new('mars', Mars::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