Sha256: e11e008951798188f7c39e7d576ec4cf0a25ca5691e61b0d0586c3786bbf5848
Contents?: true
Size: 664 Bytes
Versions: 6
Compression:
Stored size: 664 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', 'rdiscount', '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
6 entries across 6 versions & 2 rubygems
Version | Path |
---|---|
mojombo-jekyll-0.1.5 | Rakefile |
mojombo-jekyll-0.1.6 | Rakefile |
mojombo-jekyll-0.2.0 | Rakefile |
jekyll-0.1.5 | Rakefile |
jekyll-0.1.6 | Rakefile |
jekyll-0.2.0 | Rakefile |