ruby - Handling two independent gems that cause compatible version issue for Bundler -


if have gemfile is

source 'https://rubygems.org' gem "heckle", "~> 2.0.0.b1" gem "reek", "~> 1.3.2" 

then error message

fetching gem metadata https://rubygems.org/......... resolving dependencies... bundler not find compatible versions gem "ruby_parser":   in gemfile:     reek (~> 1.3.2) ruby depends on       ruby_parser (~> 3.1.1) ruby      heckle (~> 2.0.0.b1) ruby depends on       ruby_parser (2.3.1) 

is possible tell bundler heckle , reek don't need work each other, , therefore it's ok have 2 versions of ruby_parser?

for unfamiliar 2 gems involved, heckle , reek both gems provide executables analyse source code. don't need required code.


Comments

Popular posts from this blog

Detect support for Shoutcast ICY MP3 without navigator.userAgent in Firefox? -

web - SVG not rendering properly in Firefox -

java - JavaFX 2 slider labelFormatter not being used -