public
Description: A Hoe plugin to help you fix your broken codes.
Homepage:
Clone URL: git://github.com/jbarnette/hoe-debugging.git
hoe-debugging / Rakefile
100644 15 lines (10 sloc) 0.304 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
require "rubygems"
require "hoe"
 
Hoe.plugin :git
 
Hoe.spec "hoe-debugging" do
  developer "John Barnette", "jbarnette@rubyforge.org"
 
  self.extra_rdoc_files = FileList["*.rdoc"]
  self.history_file = "CHANGELOG.rdoc"
  self.readme_file = "README.rdoc"
 
  extra_deps << ["hoe", ">= 2.2.0"]
end