<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array">
    <added>
      <filename>README.rdoc</filename>
    </added>
    <added>
      <filename>annotate.gemspec</filename>
    </added>
    <added>
      <filename>lib/annotate.rb</filename>
    </added>
    <added>
      <filename>lib/annotate/annotate_models.rb</filename>
    </added>
    <added>
      <filename>lib/annotate/annotate_routes.rb</filename>
    </added>
    <added>
      <filename>lib/tasks/annotate_models.rake</filename>
    </added>
    <added>
      <filename>lib/tasks/annotate_routes.rake</filename>
    </added>
    <added>
      <filename>script/console</filename>
    </added>
    <added>
      <filename>spec/annotate/annotate_models_spec.rb</filename>
    </added>
    <added>
      <filename>spec/annotate/annotate_routes_spec.rb</filename>
    </added>
    <added>
      <filename>spec/annotate_spec.rb</filename>
    </added>
    <added>
      <filename>spec/spec.opts</filename>
    </added>
    <added>
      <filename>spec/spec_helper.rb</filename>
    </added>
    <added>
      <filename>tasks/rspec.rake</filename>
    </added>
  </added>
  <modified type="array">
    <modified>
      <diff>@@ -1,2 +1,6 @@
-pkg
-doc
+.DS_Store
+doc/*
+rdoc/*
+coverage/*
+spec/debug.log
+pkg/*</diff>
      <filename>.gitignore</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,12 @@
+== 2.0 2009-02-03
+
+* Add annotate_models plugin fork additions
+  * Annotates Rspec and Test Unit models
+  * Annotates Object Daddy exemplars
+  * Annotates geometrical columns
+* Add AnnotateRoutes rake task
+* Up gem structure to newgem defaults
+
 == 1.0.4 2008-09-04
 
 * Only update modified models since last run, thanks to sant0sk1</diff>
      <filename>History.txt</filename>
    </modified>
    <modified>
      <diff>@@ -1,27 +1,66 @@
 History.txt
 License.txt
 Manifest.txt
-README.txt
+README.rdoc
 Rakefile
-config/hoe.rb
-config/requirements.rb
-lib/annotate_models.rb
-lib/annotate_models/version.rb
-lib/annotate_models/tasks.rb
-lib/tasks/annotate.rake
-log/debug.log
+annotate.gemspec
+bin/annotate
+lib/annotate.rb
+lib/annotate/annotate_models.rb
+lib/annotate/annotate_routes.rb
+lib/tasks/annotate_models.rake
+lib/tasks/annotate_routes.rake
+script/console
+script/destroy
+script/generate
+setup.rb
+spec/annotate/annotate_models_spec.rb
+spec/annotate/annotate_routes_spec.rb
+spec/annotate_spec.rb
+spec/spec.opts
+spec/spec_helper.rb
+tasks/rspec.rake
+History.txt
+License.txt
+Manifest.txt
+README.rdoc
+Rakefile
+annotate.gemspec
+bin/annotate
+lib/annotate.rb
+lib/annotate/annotate_models.rb
+lib/annotate/annotate_routes.rb
+lib/tasks/annotate_models.rake
+lib/tasks/annotate_routes.rake
+script/console
 script/destroy
 script/generate
-script/txt2html
+setup.rb
+spec/annotate/annotate_models_spec.rb
+spec/annotate/annotate_routes_spec.rb
+spec/annotate_spec.rb
+spec/spec.opts
+spec/spec_helper.rb
+tasks/rspec.rake
+History.txt
+License.txt
+Manifest.txt
+README.rdoc
+Rakefile
+annotate.gemspec
 bin/annotate
+lib/annotate.rb
+lib/annotate/annotate_models.rb
+lib/annotate/annotate_routes.rb
+lib/tasks/annotate_models.rake
+lib/tasks/annotate_routes.rake
+script/console
+script/destroy
+script/generate
 setup.rb
-tasks/deployment.rake
-tasks/environment.rake
-tasks/website.rake
-test/test_annotate_models.rb
-test/test_helper.rb
-website/index.html
-website/index.txt
-website/javascripts/rounded_corners_lite.inc.js
-website/stylesheets/screen.css
-website/template.rhtml
+spec/annotate/annotate_models_spec.rb
+spec/annotate/annotate_routes_spec.rb
+spec/annotate_spec.rb
+spec/spec.opts
+spec/spec_helper.rb
+tasks/rspec.rake</diff>
      <filename>Manifest.txt</filename>
    </modified>
    <modified>
      <diff>@@ -1,4 +1,28 @@
-require 'config/requirements'
-require 'config/hoe' # setup Hoe + all gem configuration
+%w[rubygems rake rake/clean fileutils newgem rubigen].each { |f| require f }
+require 'lib/annotate'
 
-Dir['tasks/**/*.rake'].each { |rake| load rake }
\ No newline at end of file
+# Generate all the Rake tasks
+# Run 'rake -T' to see list of generated tasks (from gem root directory)
+$hoe = Hoe.new('annotate', Annotate::VERSION) do |p|
+  p.developer('Cuong Tran', 'ctran@pragmaquest.com')
+  p.changes              = p.paragraphs_of(&quot;History.txt&quot;, 0..1).join(&quot;\n\n&quot;)
+  p.rubyforge_name       = p.name 
+  p.url                  = &quot;http://github.com/ctran/annotate_models&quot;
+  p.summary              = &quot;Annotates Rails Models, routes, and others&quot;
+  p.description          = &quot;Annotates Rails Models, routes, and others&quot;
+  
+  p.extra_dev_deps = [
+    ['newgem', &quot;&gt;= #{::Newgem::VERSION}&quot;]
+  ]
+  
+  p.clean_globs |= %w[**/.DS_Store tmp *.log]
+  path = (p.rubyforge_name == p.name) ? p.rubyforge_name : &quot;\#{p.rubyforge_name}/\#{p.name}&quot;
+  p.remote_rdoc_dir = File.join(path.gsub(/^#{p.rubyforge_name}\/?/,''), 'rdoc')
+  p.rsync_args = '-av --delete --ignore-errors'
+end
+
+require 'newgem/tasks'
+Dir['tasks/**/*.rake'].each { |t| load t }
+
+# TODO - want other tests/tasks run by default? Add them to the list
+# task :default =&gt; [:spec, :features]</diff>
      <filename>Rakefile</filename>
    </modified>
    <modified>
      <diff>@@ -1,14 +1,21 @@
 #!/usr/bin/env ruby
 
 require 'optparse'
-require 'annotate_models/tasks'
+require 'annotate'
 
-task = &quot;annotate_models&quot;
+task = :annotate_models
 
 OptionParser.new do |opts|
   opts.banner = &quot;Usage: annotate [options]&quot;
-  opts.on('-d', '--delete') { task = &quot;remove_annotation&quot; }
+  opts.on('-d', '--delete') { task = :remove_annotation }
   opts.on('-p', '--position [before|after]', ['before', 'after']) { |p| ENV['position'] = p }
+  opts.on('-r', '--routes') { task = :annotate_routes }
+  opts.on('-v', '--version') { puts &quot;Annotate v#{Annotate::VERSION}&quot;; exit }
 end.parse!
 
-Rake::Task[task].invoke
+begin
+  Rake::Task[task].invoke
+  #TODO: rescue only rake error
+rescue NameError =&gt; e
+  puts &quot;Can`t find Rake. Are we in a Rails folder?&quot;
+end</diff>
      <filename>bin/annotate</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>206fc4e64a2712502fe3f8741b0e7b208253d911</id>
    </parent>
  </parents>
  <author>
    <name>Cuong Tran</name>
    <email>ctran@pragmaquest.com</email>
  </author>
  <url>http://github.com/ctran/annotate_models/commit/a91336e752eb5eeda6d4c825975a202a3fa58d59</url>
  <id>a91336e752eb5eeda6d4c825975a202a3fa58d59</id>
  <committed-date>2009-02-03T16:50:19-08:00</committed-date>
  <authored-date>2009-02-03T16:50:19-08:00</authored-date>
  <message>Merge changes from git://github.com/nofxx/annotate.git</message>
  <tree>2413b96d1e4998d4172ebb1f02bc2a893263da97</tree>
  <committer>
    <name>Cuong Tran</name>
    <email>ctran@pragmaquest.com</email>
  </committer>
</commit>
