timmatheson / Unfuddle

A gem for connecting to your Unfuddle account and displaying information about the state of the repository.

This URL has Read+Write access

Unfuddle / Rakefile
100644 14 lines (12 sloc) 0.444 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
%w(rubygems rake echoe).each do |gem|
  require gem
end
 
Echoe.new('unfuddle','0.1.0') do |p|
  p.description = "Integrates your rails app with Unfuddle API"
  p.url = "http://www.timmatheson.com"
  p.author = "Tim Matheson"
  p.email = "me@timmatheson.com"
  p.ignore_pattern = ["tmp/*","script/*"]
  p.development_dependencies = []
end
 
Dir["#{File.dirname(__FILE__)}/tasks/*.rake"].sort.each { |ext| load ext }