From f7fe57ddaf429e7206279f2d4ad90009a9f87938 Mon Sep 17 00:00:00 2001 From: Matt Parker Date: Sun, 16 Jan 2011 13:36:57 -0500 Subject: [PATCH] removed the "gem , ''" lines: -- These were not in sync with the gemspec requirements (which probably also explains the gem's uninstallable state), and duplicated that functionality anyways. --- lib/couchrest_model.rb | 8 -------- 1 file changed, 8 deletions(-) diff --git a/lib/couchrest_model.rb b/lib/couchrest_model.rb index 181bb9c..93f4754 100644 --- a/lib/couchrest_model.rb +++ b/lib/couchrest_model.rb @@ -1,15 +1,8 @@ -gem 'couchrest', ">= 1.0.0" require 'couchrest' -gem "tzinfo", ">= 0.3.22" - -gem 'railties', ">= 3.0.0.rc" -gem "activesupport", ">= 3.0.0.rc" - require 'active_support/core_ext' require 'active_support/json' -gem "activemodel", ">= 3.0.0.rc" require 'active_model' require "active_model/callbacks" require "active_model/conversion" @@ -21,7 +14,6 @@ require "active_model/translation" require "active_model/validator" require "active_model/validations" -gem "mime-types", ">= 1.15" require 'mime/types' require "enumerator" require "time"