summary refs log tree commit diff
path: root/Rakefile
diff options
context:
space:
mode:
authorChristian Neukirchen <chneukirchen@gmail.com>2007-12-05 14:48:06 +0100
committerChristian Neukirchen <chneukirchen@gmail.com>2007-12-05 14:48:06 +0100
commit806a850693a118dafed448964ad8e287e001a22f (patch)
tree45ad0ca9697d67e43a9f49756b436a6ad00fb82d /Rakefile
parent98d4c27ced46a0f9ebee930c2b1899ea648aadcf (diff)
downloadbacon-806a850693a118dafed448964ad8e287e001a22f.tar.gz
bacon-806a850693a118dafed448964ad8e287e001a22f.tar.xz
bacon-806a850693a118dafed448964ad8e287e001a22f.zip
Fix Rakefile
darcs-hash:20071205134806-4fc50-df7c0b7f63b0b9d52c64691a0ee705f68333332a.gz
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/Rakefile b/Rakefile
index ef84f0b..ccf2b25 100644
--- a/Rakefile
+++ b/Rakefile
@@ -11,7 +11,7 @@ task :predist => [:chmod, :changelog, :rdoc]
 
 
 desc "Make an archive as .tar.gz"
-task :dist => :fulltest do
+task :dist => :test do
   sh "export DARCS_REPO=#{File.expand_path "."}; " +
      "darcs dist -d bacon-#{get_darcs_tree_version}"
 end
@@ -47,7 +47,7 @@ def get_darcs_tree_version
 end
 
 def manifest
-  `darcs query manifest`.split("\n").map { |f| f.gsub(/\A\.\//, '') }
+  `darcs query manifest 2>/dev/null`.split("\n").map { |f| f.gsub(/\A\.\//, '') }
 end
 
 
@@ -86,7 +86,7 @@ rescue LoadError
   # Too bad.
 else
   spec = Gem::Specification.new do |s|
-    s.name            = "rack"
+    s.name            = "bacon"
     s.version         = get_darcs_tree_version
     s.platform        = Gem::Platform::RUBY
     s.summary         = "a small RSpec clone"
@@ -122,7 +122,7 @@ desc "Generate RDoc documentation"
 Rake::RDocTask.new(:rdoc) do |rdoc|
   rdoc.options << '--line-numbers' << '--inline-source' <<
     '--main' << 'README' <<
-    '--title' << 'Rack Documentation' <<
+    '--title' << 'Bacon Documentation' <<
     '--charset' << 'utf-8'
   rdoc.rdoc_dir = "doc"
   rdoc.rdoc_files.include 'README'