<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array">
    <added>
      <filename>.gitignore</filename>
    </added>
  </added>
  <modified type="array">
    <modified>
      <diff>@@ -2,24 +2,25 @@ require 'rubygems'
 require 'rake/clean'
 require 'rake/gempackagetask'
 require 'rake/rdoctask'
+require 'spec/rake/spectask'
 
 desc 'Default: package gem.'
 task :default =&gt; :gem
 
 spec = Gem::Specification.new do |spec|
-  spec.name = 'remit'
-  spec.version = '0.0.1'
-  spec.summary = &quot;An API for using the Amazon Flexible Payment Service (FPS).&quot;
-  spec.author = 'Tyler Hunt'
-  spec.email = 'tyler@tylerhunt.com'
-  spec.homepage = 'http://tylerhunt.com/'
-  spec.rubyforge_project = 'remit'
-  spec.platform = Gem::Platform::RUBY
-  spec.files = FileList['{bin,lib}/**/*'].to_a
-  spec.require_path = 'lib'
-  spec.test_files = FileList['{spec}/**/{*spec.rb,*helper.rb}'].to_a
-  spec.has_rdoc = true
-  spec.extra_rdoc_files = ['README', 'LICENSE']
+  spec.name               = 'remit'
+  spec.version            = '0.0.1'
+  spec.summary            = &quot;An API for using the Amazon Flexible Payment Service (FPS).&quot;
+  spec.author             = 'Tyler Hunt'
+  spec.email              = 'tyler@tylerhunt.com'
+  spec.homepage           = 'http://tylerhunt.com/'
+  spec.rubyforge_project  = 'remit'
+  spec.platform           = Gem::Platform::RUBY
+  spec.files              = FileList['{bin,lib}/**/*'].to_a
+  spec.require_path       = 'lib'
+  spec.test_files         = FileList['{spec}/**/{*spec.rb,*helper.rb}'].to_a
+  spec.has_rdoc           = true
+  spec.extra_rdoc_files   = ['README', 'LICENSE']
   spec.add_dependency('relax', '&gt;= 0.0.3')
 end
 
@@ -28,7 +29,20 @@ Rake::GemPackageTask.new(spec) do |package|
 end 
 
 Rake::RDocTask.new do |rdoc|
-  rdoc.title = 'Relax Documentation'
-  rdoc.main = 'README'
+  rdoc.title    = 'Remit Documentation'
+  rdoc.main     = 'README'
+  rdoc.rdoc_dir = 'rdoc'
   rdoc.rdoc_files.include('README', 'LICENSE', 'lib/**/*.rb')
+  rdoc.options &lt;&lt; '--inline-source'
+  rdoc.options &lt;&lt; '--line-numbers'
+end
+
+Spec::Rake::SpecTask.new(:spec) do |t|
+  t.spec_opts   = ['--colour --format progress --loadby mtime --reverse']
+  t.spec_files  = FileList['spec/**/*_spec.rb']
+end
+
+Spec::Rake::SpecTask.new(:doc) do |t|
+  t.spec_opts   = ['--format specdoc --dry-run --colour']
+  t.spec_files  = FileList['spec/**/*_spec.rb']
 end</diff>
      <filename>Rakefile</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>1271283ba47a1b0b3927943f18426010ca643061</id>
    </parent>
  </parents>
  <author>
    <name>Nathaniel Bibler</name>
    <email>git@nathanielbibler.com</email>
  </author>
  <url>http://github.com/tylerhunt/remit/commit/8be6b4decd08ad5671142289547fe83445c0e50d</url>
  <id>8be6b4decd08ad5671142289547fe83445c0e50d</id>
  <committed-date>2008-10-15T07:45:00-07:00</committed-date>
  <authored-date>2008-10-15T07:45:00-07:00</authored-date>
  <message>Updated Rakefile to add rake spec, rake doc, and RDoc attributes.
Added ignore for rdoc/* to ignore generated RDoc files.</message>
  <tree>3469b323a6388359ae4a5f02215d5245007917f6</tree>
  <committer>
    <name>Nathaniel Bibler</name>
    <email>git@nathanielbibler.com</email>
  </committer>
</commit>
