]> git.cworth.org Git - sup/blobdiff - Rakefile
bugfix: ignore nil ids passed to BufferManager#clear
[sup] / Rakefile
index 22f238d012bbe2460aae7efe9b780fe287c25764..cc4a12a1b844a490ac8bc14f09cb85cdb91edfdd 100644 (file)
--- a/Rakefile
+++ b/Rakefile
@@ -2,7 +2,7 @@
 
 require 'rubygems'
 require 'hoe'
-require './lib/sup.rb'
+require 'sup'
 
 class Hoe
   def extra_deps; @extra_deps.reject { |x| Array(x).first == "hoe" } end
@@ -16,14 +16,14 @@ Hoe.new('sup', Redwood::VERSION) do |p|
   p.url = p.paragraphs_of('README.txt', 0).first.split(/\n/)[2].gsub(/^\s+/, "")
   p.changes = p.paragraphs_of('History.txt', 0..0).join("\n\n")
   p.email = "wmorgan-sup@masanjin.net"
-  p.extra_deps = [['ferret', '>= 0.10.13'], ['ncurses', '>= 0.9.1'], ['rmail', '>= 0.17'], 'highline', 'net-ssh', 'trollop']
+  p.extra_deps = [['ferret', '>= 0.10.13'], ['ncurses', '>= 0.9.1'], ['rmail', '>= 0.17'], 'highline', 'net-ssh', ['trollop', '>= 1.5'], 'lockfile']
 end
 
 rule 'ss?.png' => 'ss?-small.png' do |t|
 end
 
 ## is there really no way to make a rule for this?
-WWW_FILES = %w(www/index.html README.txt doc/Philosophy.txt doc/FAQ.txt doc/UserGuide.txt)
+WWW_FILES = %w(www/index.html README.txt doc/Philosophy.txt doc/FAQ.txt doc/UserGuide.txt www/main.css)
 
 SCREENSHOTS = FileList["www/ss?.png"]
 SCREENSHOTS_SMALL = []