From 7d9bd24a742a62a71753c89f773a9253497c2499 Mon Sep 17 00:00:00 2001 From: Jim Weirich Date: Mon, 8 Feb 2010 15:02:22 -0500 Subject: [PATCH] Added tracker/bug reporting links to README (and changed to README.rdoc) --- README => README.rdoc | 15 +++++++++++---- Rakefile | 6 +++--- 2 files changed, 14 insertions(+), 7 deletions(-) rename README => README.rdoc (94%) diff --git a/README b/README.rdoc similarity index 94% rename from README rename to README.rdoc index b5a9084..31261c8 100644 --- a/README +++ b/README.rdoc @@ -217,9 +217,16 @@ incompatibility are: xml.target! => "Iñtërnâtiônàl" +== Links + +Documents:: http://builder.rubyforge.org/ +Github Clone:: git://github.com/jimweirich/builder.git +Issue Tracking:: http://www.pivotaltracker.com/projects/29210 +Bug Reports:: http://onestepback.org/cgi-bin/bugs.cgi?project=builder + == Contact -Author:: Jim Weirich -Email:: jim@weirichhouse.org -Home Page:: http://onestepback.org -License:: MIT Licence (http://www.opensource.org/licenses/mit-license.html) +Author:: Jim Weirich +Email:: jim@weirichhouse.org +Home Page:: http://onestepback.org +License:: MIT Licence (http://www.opensource.org/licenses/mit-license.html) diff --git a/Rakefile b/Rakefile index d393e7f..c41862f 100644 --- a/Rakefile +++ b/Rakefile @@ -49,7 +49,7 @@ end rd = Rake::RDocTask.new("rdoc") { |rdoc| rdoc.rdoc_dir = 'html' rdoc.title = "Builder for Markup" - rdoc.options << '--line-numbers' << '--inline-source' << '--main' << 'README' + rdoc.options << '--line-numbers' << '--inline-source' << '--main' << 'README.rdoc' rdoc.rdoc_files.include('lib/**/*.rb', '[A-Z]*', 'doc/**/*.rdoc') rdoc.template = 'doc/jamis.rb' } @@ -99,7 +99,7 @@ simple to do. Currently the following builder objects are supported: s.extra_rdoc_files = rd.rdoc_files.reject { |fn| fn =~ /\.rb$/ }.to_a s.rdoc_options << '--title' << 'Builder -- Easy XML Building' << - '--main' << 'README' << + '--main' << 'README.rdoc' << '--line-numbers' s.author = "Jim Weirich" @@ -130,7 +130,7 @@ classes that make heavy use of method_missing. s.extra_rdoc_files = rd.rdoc_files.reject { |fn| fn =~ /\.rb$/ }.to_a s.rdoc_options << '--title' << 'BlankSlate -- Base Class for building proxies.' << - '--main' << 'README' << + '--main' << 'README.rdoc' << '--line-numbers' s.author = "Jim Weirich"