0
Good afternoon, I’m having a problem installing a . Gem through Gemfile. In Gemfile is:
gem 'hanaclient', path: '/usr/sap/hdbclient/ruby/hanaclient'
Within the /usr/sap/hdbclient/ruby/hanaclient (ls):
hanaclient-2.3.119-x86_64-linux.gem
When executing the Bundle install, returns:
Could not find gem 'hanaclient' in source at `/usr/sap/hdbclient/ruby/hanaclient`.
The source does not contain any versions of 'hanaclient'
Any solution? Thank you.
Gem version added in Gemfile
gem 'hanaclient', '2.3.119', path: '/usr/sap/hdbclient/ruby/hanaclient'
, and the problem was solved, but I got another problem that apparently, even installed, the Gem could not be loaded when I try to give a require 'hanaclient':LoadError: cannot load such file -- hanaclient
– Henrique Shiraishi