public
Fork of mojombo/jekyll
Description: Jekyll is a blog-aware, static site generator in Ruby
Homepage:
Clone URL: git://github.com/metajack/jekyll.git
metajack (author)
Fri Jan 02 19:37:30 -0800 2009
commit  c5d443dc69fafcc47f8ef09c20af24b0414cca7f
tree    c46bbdddf097915ef4ea5cb5f90bc68462950743
parent  4476471eea646d32de8ce4072053b40f3c32b5cc
jekyll / Rakefile
100644 22 lines (18 sloc) 0.661 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
require 'rubygems'
require 'hoe'
require 'lib/jekyll'
 
Hoe.new('jekyll', Jekyll::VERSION) do |p|
  p.developer('Tom Preston-Werner', 'tom@mojombo.com')
  p.summary = "Jekyll is a simple, blog aware, static site generator."
  p.extra_deps = ['RedCloth', 'liquid', 'classifier', 'maruku', 'directory_watcher', 'open4']
end
 
desc "Open an irb session preloaded with this library"
task :console do
  sh "irb -rubygems -r ./lib/jekyll.rb"
end
 
namespace :convert do
  desc "Migrate from mephisto in the current directory"
  task :mephisto do
    sh %q(ruby -r './lib/jekyll/converters/mephisto' -e 'Jekyll::Mephisto.postgres(:database => "#{ENV["DB"]}")')
  end
end