I have installed jruby and trying to use Neo4j for my Rails app. But typing bundle install gives me the following conflict.
Bundler could not find compatible versions for gem "railties": In Gemfile: neo4j (>= 2.2.3) java depends on railties (< 3.3, >= 3.0.0) java
rails (= 4.0.0) java depends on railties (4.0.0)
Here's my gemfile:
source 'https://rubygems.org'
gem 'rails', '4.0.0'
gem 'sass-rails'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails'
gem 'therubyrhino'
gem 'jquery-rails'
gem 'turbolinks'
gem 'jbuilder', '~> 1.2'
group :doc do
gem 'sdoc', require: false
end
gem 'bcrypt-ruby', '~> 3.0.0'
gem 'unicorn'
gem 'capistrano', group: :development
group :development, :test do
gem "rspec-rails"
end
gem "neo4j", ">= 2.2.3"
Should I remove my Gemfile.lock and run bundle update? Thanks!