I've added gem refinerycms
, ~> 2.0.10
in my existing rails app built with rails version 3.2.6 but when I run "bundle command" I'm getting this error:
Bundler could not find compatible versions for gem "jquery-rails":
In Gemfile:
refinerycms-core (>= 0) ruby depends on
jquery-rails (~> 2.0.0) ruby
jquery-rails (2.2.1)
I've tried with this below syntax:
git 'git://github.com/resolve/refinerycms.git' do
gem 'refinerycms-core' #You can leave this out if you like. It's a dependency of the other engines.
gem 'refinerycms-dashboard'
gem 'refinerycms-images'
gem 'refinerycms-pages'
gem 'refinerycms-resources'
end
but still getting this error. How can Integrate Refinery CMS
with my existing rails3.2.6 app?