Getting the Rakefile configured to make this a working gem

This commit is contained in:
Jack Danger Canty 2008-11-19 21:17:00 -08:00
parent 76187c7e0b
commit a426eb36db
1 changed files with 7 additions and 5 deletions

View File

@ -1,12 +1,14 @@
require 'rubygems' require 'rubygems'
require 'hoe' require 'hoe'
require 'lib/jekyll'
# Hoe.new('jekyll', Jekyll::VERSION) do |p| Hoe.new('jekyll', Jekyll::VERSION) do |p|
# # p.rubyforge_name = 'jekyllx' # if different than lowercase project name p.rubyforge_name = 'jekyllx' # if different than lowercase project name
# # p.developer('FIX', 'FIX@example.com') p.developer('Tom Preston-Werner', 'tom@mojombo.com')
# end p.summary = "Jekyll is a simple, blog aware, static site generator."
end
desc "Open an irb session preloaded with this library" desc "Open an irb session preloaded with this library"
task :console do task :console do
sh "irb -rubygems -r ./lib/jekyll.rb" sh "irb -rubygems -r ./lib/jekyll.rb"
end end