Skip to content
This repository has been archived by the owner on Jun 30, 2018. It is now read-only.

Commit

Permalink
[GEMS] Updated Turn dependency and relaxed ActiveRecord dependency ve…
Browse files Browse the repository at this point in the history
…rsion

NOTE: Supermodel depends on ancient version ofActiveModel: 3.0. Replace with another "generic activemodel" or sort it out somehow.
  • Loading branch information
karmi committed Feb 4, 2012
1 parent e4a7e5a commit 24d58cb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion test/test_helper.rb
Expand Up @@ -7,7 +7,7 @@
require 'sqlite3' require 'sqlite3'


require 'shoulda' require 'shoulda'
require 'turn' unless ENV["TM_FILEPATH"] || ENV["CI"] require 'turn/autorun' unless ENV["TM_FILEPATH"] || ENV["CI"]
require 'mocha' require 'mocha'


require 'active_support/core_ext/hash/indifferent_access' require 'active_support/core_ext/hash/indifferent_access'
Expand Down
7 changes: 3 additions & 4 deletions tire.gemspec
Expand Up @@ -38,18 +38,17 @@ Gem::Specification.new do |s|
s.add_development_dependency "yajl-ruby", "~> 0.8.0" s.add_development_dependency "yajl-ruby", "~> 0.8.0"
s.add_development_dependency "shoulda" s.add_development_dependency "shoulda"
s.add_development_dependency "mocha" s.add_development_dependency "mocha"
s.add_development_dependency "activerecord", "~> 3.0.7" s.add_development_dependency "activerecord", "~> 3"
s.add_development_dependency "mongoid", "~> 2.2.1" s.add_development_dependency "mongoid", "~> 2.2.1"
s.add_development_dependency "sqlite3" s.add_development_dependency "sqlite3"
s.add_development_dependency "supermodel" s.add_development_dependency "supermodel", "~> 0.1.6"
s.add_development_dependency "curb" s.add_development_dependency "curb"


# These gems are not needed for CI at <http://travis-ci.org/#!/karmi/tire> # These gems are not needed for CI at <http://travis-ci.org/#!/karmi/tire>
# #
unless ENV["CI"] unless ENV["CI"]
s.add_development_dependency "rdoc" s.add_development_dependency "rdoc"
s.add_development_dependency "rcov" s.add_development_dependency "turn", "~> 0.9"
s.add_development_dependency "turn"
end end


s.description = <<-DESC s.description = <<-DESC
Expand Down

0 comments on commit 24d58cb

Please sign in to comment.