Skip to content

Commit

Permalink
Make sure we don't depend on Rails 4 stuff for now
Browse files Browse the repository at this point in the history
* Test compatibility with Ruby 2.0.0
* Go away from .rvmrc
  • Loading branch information
mhgbrown committed Apr 1, 2013
1 parent 15581b3 commit 200002d
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -3,3 +3,4 @@
Gemfile.lock
pkg/*
*DS_Store
.ruby-version
1 change: 1 addition & 0 deletions .travis.yml
Expand Up @@ -3,3 +3,4 @@ rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0.0
6 changes: 3 additions & 3 deletions cached_resource.gemspec
Expand Up @@ -17,9 +17,9 @@ Gem::Specification.new do |s|
s.require_paths = ["lib"]

s.add_dependency "rake"
s.add_dependency "activeresource"
s.add_dependency "activesupport"
s.add_dependency "nilio", ">=1.0"
s.add_dependency "activeresource", "~> 3.2"
s.add_dependency "activesupport", "~> 3.2"
s.add_dependency "nilio", ">= 1.0"

s.add_development_dependency "rspec"
end
2 changes: 1 addition & 1 deletion lib/cached_resource/version.rb
@@ -1,3 +1,3 @@
module CachedResource
VERSION = "2.3.3"
VERSION = "2.3.4"
end

0 comments on commit 200002d

Please sign in to comment.