I incorporate in 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 typhoeus that cannot be installed
Some help?
The problem is because you are specifying a different version of typhoeus than the one required by the khipu-api-client gem .
If you only need the typhoeus gem to use khipu-api-client , then removing the line
gem 'typhoeus', '1.3.0'
from your Gemfile will solve the problem, so the appropriate version of typhoeus will automatically be installed in your project: