I made a new rails 3.2.8 app and added:
gem "rmre", "~> 0.0.4"
to this new gemfile:
source 'https://rubygems.org'
gem 'rails', '3.2.8'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
gem 'mysql2'
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails', '~> 3.2.3'
gem 'coffee-rails', '~> 3.2.1'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
# gem 'therubyracer', :platforms => :ruby
gem 'uglifier', '>= 1.0.3'
end
gem 'jquery-rails'
gem "rmre", "~> 0.0.4"
# To use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.0.0'
# To use Jbuilder templates for JSON
# gem 'jbuilder'
# Use unicorn as the app server
# gem 'unicorn'
# Deploy with Capistrano
# gem 'capistrano'
# To use debugger
# gem 'debugger'
Running bundle install yields:
Bundler could not find compatible versions for gem "erubis":
In Gemfile:
rmre (~> 0.0.4) ruby depends on
erubis (~> 2.6.6) ruby
rails (= 3.2.8) ruby depends on
erubis (2.7.0)
I tried commenting out the version numbers and even removing the gems related to asset management. Still, I can't seem to arrive at a combination of gem versions that work here. It's the first time I've run into this sort of situation and I am not sure what else I might do to try out the rmre gem with a version of rails that is at least 3-point-something.
Is there a clever way to search for a workable dependency resolution here? If there is not a gem version configuration that meets the recommended dependencies, is there a least-bad approach to pursue?
Many thanks!
rmregem author to see if they would be willing to loosen the dependency restriction, so that it's not tied to such a narrowerubisversion. Forward compatibility is part of what gem authors need to maintain if they want their gem to continue to work with the latest versions of rails. – normalocity Nov 2 '12 at 1:31rmreandrailsgems) creates naming conflicts. (2) You would need a way to tell bundler which version of the gem to load, and then override the other gem's dependency declaration. – normalocity Nov 2 '12 at 2:35