looker / looker-sdk-ruby

Looker SDK for Ruby
Other
39 stars 43 forks source link

Dependency problem with faraday 1.0.0 #107

Closed AkshayGoyal022 closed 3 years ago

AkshayGoyal022 commented 3 years ago

Hello,

We are trying to upgrade the elasticsearch gem to v7.6.0 which depends on Faraday ~> 1.0.0

The gem looker-sdk has a dependency on Faraday ['>= 0.9.0', '< 1.0']. We aren't able to upgrade elasticsearch because of this dependency.

Could you please review and try to fix this issue?

Thanks in advance!

bertocq commented 3 years ago

New version just got released, which solves the issue

Only problem is that it wasn't yet pushed to rubygems (https://rubygems.org/gems/looker-sdk/versions) so to use it you'll need to add to Gemfile:

gem 'looker-sdk', git: 'https://github.com/looker/looker-sdk-ruby.git', tag: 'v0.1.0'

Because at least for me just using gem 'looker-sdk', '~> 0.1.0' resulted in the following error: Screen Shot 2021-08-21 at 01 39 51

joeldodge79 commented 3 years ago

I'm working on getting v0.1.0 published to rubygems but it might be a while so the git: ..., tag: ... Gemfile syntax is the way to go for now

joeldodge79 commented 3 years ago

got 0.1.0 published to rubygems