-
Notifications
You must be signed in to change notification settings - Fork 29
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Load Error while including "local" gem file #275
Comments
Anyone any suggestion on this @kojix2 |
Well, there have been a lot of troubles reported about bundler in the past... So I'm going to ask a few additional questions, even though I may not be able to solve this problem...
|
@kojix2 Answer to your question
|
$LOAD_PATH is a Ruby array of paths to look for files to ’require‘ in. Does your path show up in that array? If not, can you add it, and work around your issue? |
Ok I will try this. Thanks @olleolleolle |
It was not reproduced in the latest environment. As @olleolleolle suggests, you should check |
Ok @kojix2 I will do this |
Hey @KamalPatel365, I couldn't tell if you've already tried this, but this seems to work for me for local gems with iRuby. In Gemfile: gem 'payapi_client', path: 'path/to/payapi_client' In notebook: # require all gems
Bundler.require
# or require individually
require "payapi_client" |
### Below is the version of Ruby and RubyGem:
$ruby -v
ruby 2.3.0p0 (2015-12-25 revision 53290) [x86_64-linux]
$bundle -v
Bundler version 1.17.3
$gem -v
3.0.3
The text was updated successfully, but these errors were encountered: