Sha256: e7fdb9c3d6b9a3ef030a4a2173c3f87718ca72b84eeb12cb51d29edd97fed747

Contents?: true

Size: 661 Bytes

Versions: 3

Compression:

Stored size: 661 Bytes

Contents

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

Version data entries

3 entries across 3 versions & 3 rubygems

Version Path
ddemaree-jekyll-0.2.1 Rakefile
gabrielg-jekyll-0.2.2 Rakefile
jekyll-0.2.1 Rakefile