summaryrefslogtreecommitdiff
path: root/template/Rakefile
diff options
context:
space:
mode:
Diffstat (limited to 'template/Rakefile')
-rw-r--r--template/Rakefile12
1 files changed, 12 insertions, 0 deletions
diff --git a/template/Rakefile b/template/Rakefile
new file mode 100644
index 0000000..7a59ce7
--- /dev/null
+++ b/template/Rakefile
@@ -0,0 +1,12 @@
+# -*- ruby -*-
+
+require 'rubygems'
+require 'hoe'
+require './lib/<%= project %>.rb'
+
+Hoe.new('<%= project %>', <%= klass %>::VERSION) do |p|
+ # p.rubyforge_name = '<%= project %>x' # if different than lowercase project name
+ # p.developer('<%= XIF %>', '<%= XIF %>@example.com')
+end
+
+# vim: syntax=Ruby