1

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

2 Answers2

0

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.

L11
  • 187
  • 2
  • 15
0

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

Bijendra
  • 9,467
  • 8
  • 39
  • 66