1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
# -*- ruby -*-
require "rubygems"
require "hoe"
<%=
found = Gem.find_files("hoe/*.rb").map { |f| File.basename(f, ".rb").to_sym }
extra = found - Hoe.plugins - [:rake]
extra.map { |name| "# Hoe.plugin #{name.inspect}" }.sort.uniq.join("\n")
%>
Hoe.spec "<%= project %>" do
# HEY! If you fill these out in ~/.hoe_template/default/Rakefile.erb then
# you'll never have to touch them again!
# (delete this comment too, of course)
# developer("<%= XIF %>", "<%= XIF %>@example.com")
# license "MIT" # this should match the license in the README
end
# vim: syntax=ruby
|