Bundler could not find compatible versions for gem "typhoeus" v. 1.3.0

0

I enter my Gemfile:

gem 'khipu-api-client', '2.7.1'
gem 'typhoeus', '1.3.0'

However, it generates the following error when using the command: bundle install

Bundler could not find compatible versions for gem "typhoeus":

In Gemfile:
  typhoeus (= 1.3.0)

  khipu-api-client (= 2.7.1) was resolved to 2.7.1, which depends on
    typhoeus (>= 0.2.1, ~> 0.2)

Requesting a version of the typhoeus that can not be installed

Any help?

    
asked by Samuel Heredia 01.03.2018 в 13:25
source

1 answer

1

The problem is that you are specifying a different version of typhoeus than the khipu-api-client gem.

If you only need the typhoeus gem to use khipu-api-client , then the problem is solved by removing the line gem 'typhoeus', '1.3.0' of your Gemfile em>, this will automatically install the appropriate version of typhoeus in your project:

# Gemfile

gem 'khipu-api-client', '2.7.1'
    
answered by 01.03.2018 / 16:02
source