Rakefile in bones-1.3.2 vs Rakefile in bones-1.3.3
- old
+ new
@@ -1,6 +1,6 @@
-# $Id: Rakefile 489 2008-02-01 17:32:57Z tim_pease $
+# $Id: Rakefile 536 2008-02-18 23:07:49Z tim_pease $
$:.unshift('lib')
load 'tasks/setup.rb'
require 'bones'
@@ -12,13 +12,42 @@
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.rdoc_exclude << '^data/'
-PROJ.annotation_exclude = %w(^README\.txt$ ^data/)
+PROJ.annotation_exclude = %w(^README\.txt$ ^data/ ^tasks/setup.rb$)
PROJ.svn = 'bones'
PROJ.spec_opts << '--color'
+
+PROJ.ann_email[:server] = 'smtp.gmail.com'
+PROJ.ann_email[:port] = 587
+
+PROJ.post_install_message = <<-MSG
+--------------------------
+ Keep rattlin' dem bones!
+--------------------------
+MSG
+
+PROJ.ann_paragraphs = %w[install synopsis features requirements]
+PROJ.ann_text = <<-ANN
+== FUN FACT
+
+Half of all Americans are below average.
+
+== POST SCRIPT
+
+Blessings,
+TwP
+
+#{PROJ.post_install_message}
+ANN
+
+task 'gem:package' => 'manifest:assert'
+
+task(:titlize) {PROJ.name = 'Mr Bones'}
+task 'ann:announcement' => :titlize
# EOF