From 48660181003a47f4182b60d5ac1d254f9e42e7f3 Mon Sep 17 00:00:00 2001 From: Chris Anderson Date: Wed, 29 Oct 2008 12:30:09 -0700 Subject: [PATCH] extlib only in model --- Rakefile | 4 ++-- couchrest.gemspec | 4 ++-- lib/couchrest.rb | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Rakefile b/Rakefile index b444e59..6a9a4d9 100644 --- a/Rakefile +++ b/Rakefile @@ -5,8 +5,8 @@ require 'rake/gempackagetask' spec = Gem::Specification.new do |s| s.name = "couchrest" - s.version = "0.9.14" - s.date = "2008-10-14" + s.version = "0.9.15" + s.date = "2008-10-29" s.summary = "Lean and RESTful interface to CouchDB." s.email = "jchris@grabb.it" s.homepage = "http://github.com/jchris/couchrest" diff --git a/couchrest.gemspec b/couchrest.gemspec index a0d290b..a43d284 100644 --- a/couchrest.gemspec +++ b/couchrest.gemspec @@ -1,10 +1,10 @@ Gem::Specification.new do |s| s.extra_rdoc_files = ["README.rdoc", "LICENSE", "THANKS"] - s.date = "Tue Oct 14 00:00:00 -0700 2008" + s.date = "Wed Oct 29 00:00:00 -0700 2008" s.executables = ["couchview", "couchdir", "couchapp"] s.authors = ["J. Chris Anderson"] s.required_rubygems_version = ">= 0" - s.version = "0.9.14" + s.version = "0.9.15" s.files = ["LICENSE", "README.rdoc", "Rakefile", diff --git a/lib/couchrest.rb b/lib/couchrest.rb index c7e77c1..5c05b02 100644 --- a/lib/couchrest.rb +++ b/lib/couchrest.rb @@ -15,7 +15,7 @@ require "rubygems" require 'json' require 'rest_client' -require 'extlib' +# require 'extlib' $:.unshift File.dirname(__FILE__) unless $:.include?(File.dirname(__FILE__)) ||