<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -1,8 +1,4 @@
 require 'rake'
-require &quot;rake/rdoctask&quot;
-require 'rake/gempackagetask'
-require File.join(File.expand_path(File.dirname(__FILE__)), 
-  'ruby','lib','couchapp')
 
 begin
   require 'spec/rake/spectask'
@@ -14,87 +10,10 @@ EOS
   exit(0)
 end
 
-
-spec = Gem::Specification.new do |s|
-  s.name = &quot;couchapp&quot;
-  s.version = CouchApp::VERSION
-  s.summary = &quot;Standalone CouchDB Application Development Made Simple&quot;
-  s.email = &quot;jchris@apache.org&quot;
-  s.homepage = &quot;http://github.com/jchris/couchapp&quot;
-  s.description = &quot;CouchApp is a set of helpers and a jQuery plugin that conspire to get you up and running on CouchDB quickly and correctly. It brings clarity and order to the freedom of CouchDB&#8217;s document-based approach.&quot;
-  s.has_rdoc = true
-  s.authors = [&quot;J Chris Anderson&quot;, &quot;Jan Lehnardt&quot;, &quot;Greg Borenstein&quot;]
-  s.files = %w( LICENSE README.md Rakefile ruby/bin/couchapp) + 
-    Dir[&quot;app-template/**/*.*&quot;] + Dir[&quot;ruby/{bin,lib,spec}/**/*.*&quot;] -
-    Dir[&quot;ruby/spec/scratch&quot;] - Dir[&quot;ruby/spec/scratch/**/*&quot;]
-  s.extra_rdoc_files = %w( README.md LICENSE )
-  s.require_path = &quot;ruby/lib&quot;
-  s.bindir = 'ruby/bin'
-  s.executables &lt;&lt; 'couchapp'
-  
-  
-  dependencies = &quot;
-
-    json
-    JSON implementation for Ruby using fast compiled bindings
-    http://json.rubyforge.org/
-    &gt;=1.1.3
-
-    json_pure
-    JSON implementation for Ruby using pure ruby processing, which is required for JRuby
-    http://json.rubyforge.org/
-    &gt;=1.1.3
-
-    couchrest
-    Lean and RESTful interface to CouchDB.
-    http://github.com/jchris/couchrest
-    &gt;=0.11.0
-
-    &quot;
-
-  dependencies = dependencies.strip.gsub(/^ +/,'').split(/\n\n/).map{|x|x.split(/\n/)}
-
-  dependencies.each{|d|
-    name, uri, desc, version, z = d
-    s.add_dependency(name,version)
-  }
-
-end
-
-::Rake::GemPackageTask.new(spec) { |p| p.gem_spec = spec }
-
-desc &quot;Run all specs&quot;
-Spec::Rake::SpecTask.new('spec') do |t|
-	t.spec_files = FileList['ruby/spec/**/*_spec.rb']
-end
-
 desc &quot;Run Ruby specs on the Python version&quot; 
 task :python do
   system &quot;ruby ruby/spec/couchapp_spec.rb -- python&quot;
 end
 
-desc &quot;Print specdocs&quot;
-Spec::Rake::SpecTask.new(:doc) do |t|
-	t.spec_opts = [&quot;--format&quot;, &quot;specdoc&quot;]
-	t.spec_files = FileList['ruby/spec/*_spec.rb']
-end
-
-desc &quot;Generate the rdoc&quot;
-Rake::RDocTask.new do |rdoc|
-  files = [&quot;README.md&quot;, &quot;LICENSE&quot;, &quot;ruby/lib/**/*.rb&quot;]
-  rdoc.rdoc_files.add(files)
-  rdoc.main = &quot;README.md&quot;
-  rdoc.title = &quot;CouchApp: Standalone CouchDB Application Development Made Simple&quot;
-end
-
-
 desc &quot;Run the rspec&quot;
-task :default =&gt; :spec
-
-desc &quot;create .gemspec file (useful for github)&quot;
-task :gemspec do
-  filename = &quot;#{spec.name}.gemspec&quot;
-  File.open(filename, &quot;w&quot;) do |f|
-    f.puts spec.to_ruby
-  end
-end
\ No newline at end of file
+task :default =&gt; :python</diff>
      <filename>Rakefile</filename>
    </modified>
    <modified>
      <diff>@@ -2,16 +2,9 @@ require &quot;rubygems&quot;
 require &quot;spec&quot; # Satisfies Autotest and anyone else not using the Rake tasks
 require &quot;couchrest&quot;
 
-require File.expand_path(File.dirname(__FILE__)) + '/../lib/couchapp'
-
-COUCHAPP = if (ARGV[1] == 'python')
-  puts &quot;testing Python version&quot;
-  ENV['PYTHONPATH'] = File.expand_path(File.dirname(__FILE__)) + '/../../python'
-  File.expand_path(File.dirname(__FILE__)) + '/../../python/couchapp/bin/couchapp_cli.py'
-else
-  puts &quot;testing Ruby version&quot;
-  File.expand_path(File.dirname(__FILE__)) + '/../bin/couchapp'
-end
+puts &quot;testing Python version&quot;
+ENV['PYTHONPATH'] = File.expand_path(File.dirname(__FILE__)) + '/../../python'
+COUCHAPP = File.expand_path(File.dirname(__FILE__)) + '/../../python/couchapp/bin/couchapp_cli.py'
 
 SCRATCH_PATH = File.dirname(__FILE__) + '/scratch'
 COUCHHOST = &quot;http://127.0.0.1:5984&quot;
@@ -21,6 +14,6 @@ def reset_test_db!
   cr = CouchRest.new(COUCHHOST)
   db = cr.database(TESTDB)
   db.delete! rescue nil
-  db = cr.create_db(TESTDB) rescue nin
+  db = cr.create_db(TESTDB) rescue nil
   db
 end</diff>
      <filename>ruby/spec/spec_helper.rb</filename>
    </modified>
  </modified>
  <removed type="array">
    <removed>
      <filename>couchapp.gemspec</filename>
    </removed>
    <removed>
      <filename>ruby/bin/couchapp</filename>
    </removed>
    <removed>
      <filename>ruby/lib/couchapp.rb</filename>
    </removed>
    <removed>
      <filename>ruby/lib/file_manager.rb</filename>
    </removed>
    <removed>
      <filename>ruby/spec/file_manager_spec.rb</filename>
    </removed>
  </removed>
  <parents type="array">
    <parent>
      <id>b341c03ea17ea34e3def5296a523744187cfc466</id>
    </parent>
  </parents>
  <author>
    <name>Chris Anderson</name>
    <email>jchris@grabb.it</email>
  </author>
  <url>http://github.com/jchris/couchapp/commit/fbd52031485ef8e9b11ae378c921028e99a0c6ff</url>
  <id>fbd52031485ef8e9b11ae378c921028e99a0c6ff</id>
  <committed-date>2009-02-22T18:03:38-08:00</committed-date>
  <authored-date>2009-02-22T18:03:38-08:00</authored-date>
  <message>removed the ruby version. bye bye</message>
  <tree>6a045c25dcd8e5845807af430ab2031d950ee2d6</tree>
  <committer>
    <name>Chris Anderson</name>
    <email>jchris@grabb.it</email>
  </committer>
</commit>
