summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authorAdam Jacob <adam@hjksolutions.com>2008-03-05 23:31:38 -0800
committerAdam Jacob <adam@hjksolutions.com>2008-03-05 23:31:38 -0800
commitb5117775e86cff40399187b6292c98fba9dc5034 (patch)
treecbbfcdb78089b49084fc349e30e1adfa53fec04c /Rakefile
downloadchef-b5117775e86cff40399187b6292c98fba9dc5034.tar.gz
Initial Commit
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile21
1 files changed, 21 insertions, 0 deletions
diff --git a/Rakefile b/Rakefile
new file mode 100644
index 0000000000..9ba3b6b619
--- /dev/null
+++ b/Rakefile
@@ -0,0 +1,21 @@
+# -*- ruby -*-
+
+require 'rubygems'
+require 'hoe'
+require './lib/marionette.rb'
+require './tasks/rspec.rb'
+# require Dir[File.join(File.dirname(__FILE__), 'tasks/**/*.rb')].sort.each do |lib|
+# require lib
+# end
+
+Hoe.new('marionette', Marionette::VERSION) do |p|
+ p.rubyforge_name = 'marionette'
+ p.author = 'Adam Jacob'
+ p.email = 'adam@hjksolutions.com'
+ p.summary = 'A configuration management system'
+ p.description = p.paragraphs_of('README.txt', 2..5).join("\n\n")
+ p.url = p.paragraphs_of('README.txt', 0).first.split(/\n/)[1..-1]
+ p.changes = p.paragraphs_of('History.txt', 0..1).join("\n\n")
+end
+
+# vim: syntax=Ruby