public
Description: A gem for connecting to your Unfuddle account and displaying information about the state of the repository.
Homepage: http://www.timmatheson.com
Clone URL: git://github.com/timmatheson/Unfuddle.git
Unfuddle / Rakefile
100644 14 lines (12 sloc) 0.457 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.1') do |p|
  p.description = "Integrates your rails app with Unfuddle API and Rack"
  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__)}/lib/tasks/*.rake"].sort.each { |ext| load ext }