instructure / analytics

The official analytics package for Instructure's Canvas LMS.
GNU Affero General Public License v3.0
35 stars 32 forks source link

Bundler could not find compatible versions for gem "autoextend" #9

Closed eortigoza5 closed 6 years ago

eortigoza5 commented 6 years ago

hi I have this issue wiht latest version of canvas ruby 2.4.0 and bundler (1.13.6) I try to find it https://rubygems.org/gems - but can not find it,

Bundler could not find compatible versions for gem "autoextend": In Gemfile: analytics was resolved to 1.0.0, which depends on autoextend (~> 1.0.0)

Could not find gem 'autoextend (~> 1.0.0)', which is required by gem 'analytics', in any of the sources.

ccutrer commented 6 years ago

This sounds like you're trying to bundle install directly in analytics, which is not necessary. Just drop this repo into gems/plugins/ within your canvas-lms checkout, and bundle install from the canvas-lms root, along with following the other install instructions for analytics.

The error is because the autoextend gem is provided by canvas, and only by canvas, so it's impossible to find outside of the context of canvas.

eortigoza5 commented 6 years ago

Thanks...