public
Description: A simple Ruby interface for Revver's api
Homepage: http://github.com/chalkers/revver4r/
Clone URL: git://github.com/chalkers/revver4r.git
Click here to lend your support to: revver4r and make a donation at www.pledgie.com !
chalkers (author)
Mon Nov 24 02:47:02 -0800 2008
commit  fa4bc6aa7aff85f2cd89017d03df74fd14e5e5d9
tree    e666981e452b87504da13ac834c8c19d4152eda2
parent  85362fb4f659b3e9b62e3c1a03962ff400beccd8
revver4r / Rakefile
100644 15 lines (12 sloc) 0.462 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
require 'rubygems'
require 'rake'
require 'echoe'
 
Echoe.new('Revver4R', '0.1.0') do |p|
  p.description = "A simple Ruby interface for Revver's api."
  p.url = "http://github.com/chalkers/revver4r"
  p.author = "Andrew Chalkley"
  p.email = "andrew@chalkely.org"
  p.ignore_pattern = ["tmp/*", "scripts/*"]
  p.development_dependencies = ["hpricot"]
end
 
Dir["#{File.dirname(__FILE__)}/tasks/*.rake"].sort.each { |ext| load ext }