The edited gem file is located in the same folder as the application I'm working on. The path is /Users/name/Ruby/Instagram
. I need to install it, but I can't just use gem 'gem_name' install
because it will install the general version from GitHub. How can I make it install the gem I just made changes to?
Also, I'm using RVM and can't get into the .rvm file to just drag and drop.
Here is my setup: Whenever I work on my edited version of the gem or want to load that to the app I do
RAILS_ENV=development bundle install
, when I want the live version I do bundle install.You need to have the version different, even a patch version 1.0.0 to 1.0.1 will work so bundle will update the .lock file with the correct paths.
To simplify this and only get your local version you can do something like this:
then you change the version of the gem to be different from the live one, and run
bundle install
.