When run bundle install getting this error https://i.stack.imgur.com/V4O3U.png
In Gemfile
gem 'canvas_connect', '0.3.12'
gem 'adobe_connect', '1.0.6', require: false
When run bundle install getting this error https://i.stack.imgur.com/V4O3U.png
In Gemfile
gem 'canvas_connect', '0.3.12'
gem 'adobe_connect', '1.0.6', require: false
Try installing these gems
gem 'canvas_connect', '~> 0.3.11'
and
gem 'adobe_connect', '~> 1.0', '>= 1.0.6', require: false
It seems like 0.3.11 is the latest version for canvas_connect.
Canvas Connect Check this link for the available versions, the version mentioned in your Gemfile is wrong. Either update it with the version which you want to just remove it. Bundle will install the latest available .
adobe_connect is a dependent gem and recheck the version mentioned with available versions.
Rubygems.org should be used as reference to compare and find gem versions