The gemspec requires: s.add_dependency 'activerecord', ['~> 3.0.0'] Which prevents using this gem with Rails 3.1.x (current release) If the gem is otherwise compatible using: s.add_dependency 'activerecord', ['>= 3.0.0'] Might do the trick.
The gemspec requires:
s.add_dependency 'activerecord', ['~> 3.0.0']
Which prevents using this gem with Rails 3.1.x (current release)
If the gem is otherwise compatible using:
s.add_dependency 'activerecord', ['>= 3.0.0']
Might do the trick.