Rakefile in bones-1.3.4 vs Rakefile in bones-1.3.5
- old
+ new
@@ -1,6 +1,6 @@
-# $Id: Rakefile 547 2008-02-20 20:30:47Z tim_pease $
+# $Id: Rakefile 562 2008-02-28 04:36:33Z tim_pease $
$:.unshift('lib')
load 'tasks/setup.rb'
require 'bones'
@@ -10,11 +10,11 @@
PROJ.email = 'tim.pease@gmail.com'
PROJ.url = 'http://codeforpeople.rubyforge.org/bones'
PROJ.rubyforge_name = 'codeforpeople'
PROJ.rdoc_remote_dir = 'bones'
PROJ.version = Bones::VERSION
-PROJ.release_name = 'Finite State Puppy'
+PROJ.release_name = 'Skeletor'
PROJ.rdoc_exclude << '^data/'
PROJ.annotation_exclude = %w(^README\.txt$ ^data/ ^tasks/setup.rb$)
PROJ.svn = 'bones'
@@ -31,25 +31,23 @@
PROJ.ann_paragraphs = %w[install synopsis features requirements]
PROJ.ann_text = <<-ANN
== FUN FACT
-A 'jiffy' is an actual unit of time for 1/100th of a second.
+90% of New York City cab drivers are recently arrived immigrants.
== POST SCRIPT
Blessings,
TwP
-== POST POST SCRIPT
-
-The "Finite State Puppy" is the only known pet that is Touring complete.
-
#{PROJ.post_install_message}
ANN
task :default => 'spec:run'
task 'gem:package' => 'manifest:assert'
task(:titlize) {PROJ.name = 'Mr Bones'}
task 'ann:announcement' => :titlize
+
+depend_on 'rake'
# EOF