summaryrefslogtreecommitdiff
path: root/template/Rakefile.erb
blob: a4e148d94e55005a74947cfae7f436c96a4c707e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# -*- 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/Rakefile.erb then
  # you'll never have to touch them again!
  # (delete this comment too, of course)

  # developer("<%= XIF %>", "<%= XIF %>@example.com")

  # self.group_name = "<%= project %>x" # if part of an organization/group

  # license "MIT" # this should match the license in the README
end

# vim: syntax=ruby