From a426eb36db642cdb1d0f1b533932b415d9180285 Mon Sep 17 00:00:00 2001 From: Jack Danger Canty Date: Wed, 19 Nov 2008 21:17:00 -0800 Subject: [PATCH] Getting the Rakefile configured to make this a working gem --- Rakefile | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/Rakefile b/Rakefile index eec7e960..b38ffaf2 100644 --- a/Rakefile +++ b/Rakefile @@ -1,12 +1,14 @@ require 'rubygems' require 'hoe' +require 'lib/jekyll' -# Hoe.new('jekyll', Jekyll::VERSION) do |p| -# # p.rubyforge_name = 'jekyllx' # if different than lowercase project name -# # p.developer('FIX', 'FIX@example.com') -# end +Hoe.new('jekyll', Jekyll::VERSION) do |p| + p.rubyforge_name = 'jekyllx' # if different than lowercase project name + p.developer('Tom Preston-Werner', 'tom@mojombo.com') + p.summary = "Jekyll is a simple, blog aware, static site generator." +end desc "Open an irb session preloaded with this library" task :console do sh "irb -rubygems -r ./lib/jekyll.rb" -end \ No newline at end of file +end