<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -106,7 +106,7 @@ AnnotateModels mods by:
 
 AnnotateRoutes originally by:
 
-  Gavin Montague ( http://github.com/Govan/annotate-routes )
+  Gavin Montague ( http://github.com/govan/annotate-routes )
 
 
 == Forked from:</diff>
      <filename>README.rdoc</filename>
    </modified>
    <modified>
      <diff>@@ -4,15 +4,13 @@ require File.dirname(__FILE__) + '/lib/annotate'
 # 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('FIXME full name', 'FIXME email')
+  p.developer('Marcos Piccinini', 'x@nofxx.com')
   p.changes              = p.paragraphs_of(&quot;History.txt&quot;, 0..1).join(&quot;\n\n&quot;)
-  p.rubyforge_name       = p.name # TODO this is default value
-  #p.summary
+  p.rubyforge_name       = p.name 
+  p.url                  = &quot;http://github.com/nofxx/annotate&quot;
+  p.summary              = &quot;Annotates Rails Models and Routes&quot;
+  p.description          = &quot;Annotates Rails Models and Routes&quot;
   
-  
-  # p.extra_deps         = [
-  #   ['activesupport','&gt;= 2.0.2'],
-  # ]
   p.extra_dev_deps = [
     ['newgem', &quot;&gt;= #{::Newgem::VERSION}&quot;]
   ]</diff>
      <filename>Rakefile</filename>
    </modified>
    <modified>
      <diff>@@ -2,24 +2,24 @@
 
 Gem::Specification.new do |s|
   s.name = %q{annotate}
-  s.version = &quot;2.0.8&quot;
+  s.version = &quot;2.1.0&quot;
 
   s.required_rubygems_version = Gem::Requirement.new(&quot;&gt;= 0&quot;) if s.respond_to? :required_rubygems_version=
-  s.authors = [&quot;FIXME full name&quot;]
+  s.authors = [&quot;Marcos Piccinini&quot;]
   s.date = %q{2008-12-25}
   s.default_executable = %q{annotate}
-  s.description = %q{}
-  s.email = [&quot;FIXME email&quot;]
+  s.description = %q{Annotates Rails Models and Routes}
+  s.email = [&quot;x@nofxx.com&quot;]
   s.executables = [&quot;annotate&quot;]
   s.extra_rdoc_files = [&quot;History.txt&quot;, &quot;License.txt&quot;, &quot;Manifest.txt&quot;, &quot;README.rdoc&quot;]
   s.files = [&quot;History.txt&quot;, &quot;License.txt&quot;, &quot;Manifest.txt&quot;, &quot;README.rdoc&quot;, &quot;Rakefile&quot;, &quot;annotate.gemspec&quot;, &quot;bin/annotate&quot;, &quot;config/hoe.rb&quot;, &quot;config/requirements.rb&quot;, &quot;lib/annotate.rb&quot;, &quot;lib/annotate_models/annotate_models.rb&quot;, &quot;lib/annotate_routes/annotate_routes.rb&quot;, &quot;lib/tasks/annotate_models.rake&quot;, &quot;lib/tasks/annotate_routes.rake&quot;, &quot;script/console&quot;, &quot;script/destroy&quot;, &quot;script/generate&quot;, &quot;setup.rb&quot;, &quot;spec/annotate_spec.rb&quot;, &quot;spec/spec.opts&quot;, &quot;spec/spec_helper.rb&quot;, &quot;tasks/rspec.rake&quot;]
   s.has_rdoc = true
-  s.homepage = %q{  sudo gem install nofxx-annotate}
+  s.homepage = %q{http://github.com/nofxx/annotate}
   s.rdoc_options = [&quot;--main&quot;, &quot;README.rdoc&quot;]
   s.require_paths = [&quot;lib&quot;]
   s.rubyforge_project = %q{annotate}
   s.rubygems_version = %q{1.3.1}
-  s.summary = %q{}
+  s.summary = %q{Annotates Rails Models and Routes}
 
   if s.respond_to? :specification_version then
     current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION</diff>
      <filename>annotate.gemspec</filename>
    </modified>
    <modified>
      <diff>@@ -2,7 +2,7 @@ $:.unshift(File.dirname(__FILE__)) unless
   $:.include?(File.dirname(__FILE__)) || $:.include?(File.expand_path(File.dirname(__FILE__)))
 
 module Annotate
-  VERSION = '2.0.8'
+  VERSION = '2.1.0'
 end
 
 </diff>
      <filename>lib/annotate.rb</filename>
    </modified>
    <modified>
      <diff>@@ -7,6 +7,7 @@ module AnnotateModels
     # Object Daddy http://github.com/flogic/object_daddy/tree/master
     EXEMPLARS_DIR     = File.join(RAILS_ROOT, &quot;spec/exemplars&quot;)
     PREFIX = &quot;== Schema Information&quot;
+    COMPAT_PREFIX = &quot;== Schema Info&quot;
 
     # Simple quoting for the default column value
     def quote(value)
@@ -79,7 +80,7 @@ module AnnotateModels
           false
         else
           # Remove old schema info
-          old_content.sub!(/^# #{PREFIX}.*?\n(#.*\n)*\n/, '')
+          old_content.sub!(/^# #{COMPAT_PREFIX}.*?\n(#.*\n)*\n/, '')
 
           # Write it back
           new_content = options[:position] == &quot;before&quot; ?  (info_block + old_content) : (old_content + &quot;\n&quot; + info_block)
@@ -94,7 +95,7 @@ module AnnotateModels
       if File.exist?(file_name)
         content = File.read(file_name)
 
-        content.sub!(/^# #{PREFIX}.*?\n(#.*\n)*\n/, '')
+        content.sub!(/^# #{COMPAT_PREFIX}.*?\n(#.*\n)*\n/, '')
         
         File.open(file_name, &quot;w&quot;) { |f| f.puts content }
       end
@@ -188,7 +189,7 @@ module AnnotateModels
       if annotated.empty?
         puts &quot;Nothing annotated!&quot;
       else
-        puts &quot;Annotated (#{annotated.length}) #{annotated.join(', ')}&quot;
+        puts &quot;Annotated (#{annotated.length}): #{annotated.join(', ')}&quot;
       end
     end
     </diff>
      <filename>lib/annotate_models/annotate_models.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,9 @@
 # == Annotate Routes
 # 
+# Based on:
+# 
+# 
+#
 # Prepends the output of &quot;rake routes&quot; to the top of your routes.rb file.
 # Yes, it's simple but I'm thick and often need a reminder of what my routes mean.
 # </diff>
      <filename>lib/annotate_routes/annotate_routes.rb</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>b331d0711a53e7cb880ba9594a66b4490f01a989</id>
    </parent>
  </parents>
  <author>
    <name>Marcos Augusto</name>
    <email>x@nofxx.com</email>
  </author>
  <url>http://github.com/nclark/annotate_models/commit/0c3673a3f15c1cf019ddda8229574ab1cb972e5f</url>
  <id>0c3673a3f15c1cf019ddda8229574ab1cb972e5f</id>
  <committed-date>2008-12-25T01:55:14-08:00</committed-date>
  <authored-date>2008-12-25T01:55:14-08:00</authored-date>
  <message>some fixes</message>
  <tree>8a6effc06f3740eb7e59180caa75ce4ab18c3ee7</tree>
  <committer>
    <name>Marcos Augusto</name>
    <email>x@nofxx.com</email>
  </committer>
</commit>
