drnic / jekyll_generator

A nice generator for a Jekyll website including Disqus comments integration

This URL has Read+Write access

drnic (author)
Mon Dec 29 01:55:38 -0800 2008
commit  da086ee30afcb3a18d5074a07e908154442de145
tree    100a7dfcb7f017fde91e9232568a0ec6ef3c1543
parent  2a1e0354b8a3e7b2192cfeb6e24a725253247d01
jekyll_generator / Rakefile
100644 29 lines (24 sloc) 1.226 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
%w[rubygems rake rake/clean fileutils newgem rubigen].each { |f| require f }
require File.dirname(__FILE__) + '/lib/jekyll_generator'
 
# Generate all the Rake tasks
# Run 'rake -T' to see list of generated tasks (from gem root directory)
$hoe = Hoe.new('jekyll_generator', JekyllGenerator::VERSION) do |p|
  p.developer('Dr Nic Williams', 'drnicwilliams@gmail.com')
  p.changes = p.paragraphs_of("History.txt", 0..1).join("\n\n")
  p.post_install_message = 'PostInstall.txt' # TODO remove if post-install message not required
  p.rubyforge_name = 'drnicutilities'
  p.extra_deps = [
    ['rubigen', ">= #{::RubiGen::VERSION}"]
  ]
  p.extra_dev_deps = [
    ['newgem', ">= #{::Newgem::VERSION}"]
  ]
  
  p.clean_globs |= %w[**/.DS_Store tmp *.log]
  path = (p.rubyforge_name == p.name) ? p.rubyforge_name : "\#{p.rubyforge_name}/\#{p.name}"
  p.remote_rdoc_dir = File.join(path.gsub(/^#{p.rubyforge_name}\/?/,''), 'rdoc')
  p.rsync_args = '-av --delete --ignore-errors'
end
 
require 'newgem/tasks' # load /tasks/*.rake
Dir['tasks/**/*.rake'].each { |t| load t }
 
# TODO - want other tests/tasks run by default? Add them to the list
# task :default => [:spec, :features]