Rakefile in bones-1.3.3 vs Rakefile in bones-1.3.4
- old
+ new
@@ -1,22 +1,20 @@
-# $Id: Rakefile 536 2008-02-18 23:07:49Z tim_pease $
+# $Id: Rakefile 547 2008-02-20 20:30:47Z tim_pease $
$:.unshift('lib')
load 'tasks/setup.rb'
require 'bones'
-task :default => 'spec:run'
-
PROJ.name = 'bones'
PROJ.authors = 'Tim Pease'
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 = 'Fractal Bovine'
+PROJ.release_name = 'Finite State Puppy'
PROJ.rdoc_exclude << '^data/'
PROJ.annotation_exclude = %w(^README\.txt$ ^data/ ^tasks/setup.rb$)
PROJ.svn = 'bones'
@@ -33,21 +31,25 @@
PROJ.ann_paragraphs = %w[install synopsis features requirements]
PROJ.ann_text = <<-ANN
== FUN FACT
-Half of all Americans are below average.
+A 'jiffy' is an actual unit of time for 1/100th of a second.
== 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
# EOF