<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array">
    <added>
      <filename>VERSION</filename>
    </added>
  </added>
  <modified type="array">
    <modified>
      <diff>@@ -1,3 +1,2 @@
-html
-doc
-pkg
\ No newline at end of file
+rdoc
+pkg</diff>
      <filename>.gitignore</filename>
    </modified>
    <modified>
      <diff>@@ -1,17 +1,11 @@
 = ReCAPTCHA
 
 Author::    Jason L Perry (http://ambethia.com)
-
 Copyright:: Copyright (c) 2007 Jason L Perry
-
 License::   MIT
-
-RDOC::      http://ambethia.com/recaptcha/
-
+Info::      http://ambethia.com/recaptcha/
 Git::       http://github.com/ambethia/recaptcha/tree/master
-
-Bugs::      http://ambethia.lighthouseapp.com/projects/11072-recaptcha/overview
-
+Bugs::      http://github.com/ambethia/recaptcha/issues
 
 This plugin adds helpers for the ReCAPTCHA API (http://recaptcha.net/). In your views you can use
 the +recaptcha_tags+ method to embed the needed javascript, and you can validate in your controllers</diff>
      <filename>README.rdoc</filename>
    </modified>
    <modified>
      <diff>@@ -1,40 +1,55 @@
 require 'rake'
-require 'rake/testtask'
-require 'rake/rdoctask'
-require 'echoe'
-
-Echoe.new('recaptcha', '0.1.0') do |p|
-  p.description    = &quot;This plugin adds helpers for the ReCAPTCHA API &quot;
-  p.url            = &quot;http://github.com/ambethia/recaptcha/tree/master&quot;
-  p.author         = &quot;Jason L. Perry&quot;
-  p.email          = &quot;jasper@ambethia.com&quot;
-  p.ignore_pattern = [&quot;pkg/**/*&quot;]
-  p.development_dependencies = []
+
+begin
+  require 'jeweler'
+  Jeweler::Tasks.new do |gem|
+    gem.name           = &quot;recaptcha&quot;
+    gem.description    = &quot;This plugin adds helpers for the ReCAPTCHA API &quot;
+    gem.homepage       = &quot;http://github.com/ambethia/recaptcha&quot;
+    gem.authors        = [&quot;Jason L. Perry&quot;]
+    gem.email          = &quot;jasper@ambethia.com&quot;
+  end
+rescue LoadError
+  puts &quot;Jeweler (or a dependency) not available. Install it with: sudo gem install jeweler&quot;
 end
 
+require 'rake/rdoctask'
+Rake::RDocTask.new do |rd|
+  if File.exist?('VERSION.yml')
+    config = YAML.load(File.read('VERSION.yml'))
+    version = &quot;#{config[:major]}.#{config[:minor]}.#{config[:patch]}&quot;
+  else
+    version = &quot;&quot;
+  end
 
-desc 'Default: run unit tests.'
-task :default =&gt; :test
+  rd.main = &quot;README.rdoc&quot;
+  rd.rdoc_files.include &quot;README.rdoc&quot;, &quot;LICENSE&quot;, &quot;lib/**/*.rb&quot;
+  rd.rdoc_dir = 'rdoc'
+  rd.options &lt;&lt; '-N' # line numbers
+  rd.options &lt;&lt; '-S' # inline source
+end
 
-desc 'Test the recaptcha plugin.'
-Rake::TestTask.new(:test) do |t|
-  t.libs &lt;&lt; 'lib'
-  t.pattern = 'test/**/*_test.rb'
-  t.verbose = true
+require 'rake/testtask'
+Rake::TestTask.new(:test) do |test|
+  test.libs &lt;&lt; 'lib' &lt;&lt; 'test'
+  test.pattern = 'test/**/*_test.rb'
+  test.verbose = true
 end
 
-ALLISON = &quot;/Library/Ruby/Gems/1.8/gems/allison-2.0.3/lib/allison.rb&quot;  
-  
-Rake::RDocTask.new do |rd|  
-  rd.main = &quot;README.rdoc&quot;  
-  rd.rdoc_files.include &quot;README.rdoc&quot;, &quot;LICENSE&quot;, &quot;lib/**/*.rb&quot;
-  rd.title = &quot;ReCAPTCHA&quot;  
-  rd.options &lt;&lt; '-N' # line numbers  
-  rd.options &lt;&lt; '-S' # inline source  
-  rd.template = ALLISON if File.exist?(ALLISON)  
+begin
+  require 'rcov/rcovtask'
+  Rcov::RcovTask.new do |test|
+    test.libs &lt;&lt; 'test'
+    test.pattern = 'test/**/*_test.rb'
+    test.verbose = true
+  end
+rescue LoadError
+  task :rcov do
+    abort &quot;RCov is not available. In order to run rcov, you must: sudo gem install spicycode-rcov&quot;
+  end
 end
 
-desc &quot;Upload the rdoc to ambethia.com&quot;
-task &quot;publish&quot; do
-  sh &quot;scp -r html/* ambethia.com:~/www/ambethia.com/recaptcha&quot;
-end
\ No newline at end of file
+task :default =&gt; :test
+
+
+</diff>
      <filename>Rakefile</filename>
    </modified>
    <modified>
      <diff>@@ -2,27 +2,46 @@
 
 Gem::Specification.new do |s|
   s.name = %q{recaptcha}
-  s.version = &quot;0.1.0&quot;
+  s.version = &quot;0.2.0&quot;
 
-  s.required_rubygems_version = Gem::Requirement.new(&quot;&gt;= 1.2&quot;) if s.respond_to? :required_rubygems_version=
+  s.required_rubygems_version = Gem::Requirement.new(&quot;&gt;= 0&quot;) if s.respond_to? :required_rubygems_version=
   s.authors = [&quot;Jason L. Perry&quot;]
-  s.date = %q{2009-02-08}
-  s.description = %q{This plugin adds helpers for the ReCAPTCHA API}
+  s.date = %q{2009-09-12}
+  s.description = %q{This plugin adds helpers for the ReCAPTCHA API }
   s.email = %q{jasper@ambethia.com}
-  s.extra_rdoc_files = [&quot;CHANGELOG&quot;, &quot;lib/recaptcha/recaptcha.rb&quot;, &quot;lib/recaptcha.rb&quot;, &quot;LICENSE&quot;, &quot;README.rdoc&quot;, &quot;tasks/recaptcha_tasks.rake&quot;]
-  s.files = [&quot;CHANGELOG&quot;, &quot;init.rb&quot;, &quot;lib/recaptcha/recaptcha.rb&quot;, &quot;lib/recaptcha.rb&quot;, &quot;LICENSE&quot;, &quot;Manifest&quot;, &quot;Rakefile&quot;, &quot;README.rdoc&quot;, &quot;tasks/recaptcha_tasks.rake&quot;, &quot;test/recaptcha_test.rb&quot;, &quot;test/verify_recaptcha_test.rb&quot;, &quot;recaptcha.gemspec&quot;]
-  s.has_rdoc = true
-  s.homepage = %q{http://github.com/ambethia/recaptcha/tree/master}
-  s.rdoc_options = [&quot;--line-numbers&quot;, &quot;--inline-source&quot;, &quot;--title&quot;, &quot;Recaptcha&quot;, &quot;--main&quot;, &quot;README.rdoc&quot;]
+  s.extra_rdoc_files = [
+    &quot;LICENSE&quot;,
+     &quot;README.rdoc&quot;
+  ]
+  s.files = [
+    &quot;.gitignore&quot;,
+     &quot;CHANGELOG&quot;,
+     &quot;LICENSE&quot;,
+     &quot;Manifest&quot;,
+     &quot;README.rdoc&quot;,
+     &quot;Rakefile&quot;,
+     &quot;VERSION&quot;,
+     &quot;init.rb&quot;,
+     &quot;lib/recaptcha.rb&quot;,
+     &quot;lib/recaptcha/recaptcha.rb&quot;,
+     &quot;recaptcha.gemspec&quot;,
+     &quot;tasks/recaptcha_tasks.rake&quot;,
+     &quot;test/recaptcha_test.rb&quot;,
+     &quot;test/verify_recaptcha_test.rb&quot;
+  ]
+  s.homepage = %q{http://github.com/ambethia/recaptcha}
+  s.rdoc_options = [&quot;--charset=UTF-8&quot;]
   s.require_paths = [&quot;lib&quot;]
-  s.rubyforge_project = %q{recaptcha}
-  s.rubygems_version = %q{1.3.1}
-  s.summary = %q{This plugin adds helpers for the ReCAPTCHA API}
-  s.test_files = [&quot;test/recaptcha_test.rb&quot;, &quot;test/verify_recaptcha_test.rb&quot;]
+  s.rubygems_version = %q{1.3.5}
+  s.summary = nil
+  s.test_files = [
+    &quot;test/recaptcha_test.rb&quot;,
+     &quot;test/verify_recaptcha_test.rb&quot;
+  ]
 
   if s.respond_to? :specification_version then
     current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
-    s.specification_version = 2
+    s.specification_version = 3
 
     if Gem::Version.new(Gem::RubyGemsVersion) &gt;= Gem::Version.new('1.2.0') then
     else</diff>
      <filename>recaptcha.gemspec</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>a6bafebb4459d10982b241f5f89bc15f1802c968</id>
    </parent>
  </parents>
  <author>
    <name>Jason L Perry</name>
    <email>jasper@ambethia.com</email>
  </author>
  <url>http://github.com/ambethia/recaptcha/commit/c63cd3f8542da0854a2c910fbff1ab30d27886b8</url>
  <id>c63cd3f8542da0854a2c910fbff1ab30d27886b8</id>
  <committed-date>2009-09-12T16:39:47-07:00</committed-date>
  <authored-date>2009-09-12T16:25:36-07:00</authored-date>
  <message>Version bump to 0.2.0 (&lt;3 Jeweler)</message>
  <tree>7364cb5b3aacee9d8b1500bfeaf7dae78a30d414</tree>
  <committer>
    <name>Jason L Perry</name>
    <email>jasper@ambethia.com</email>
  </committer>
</commit>
