I've been having some serious pains getting rubymine to use a gem version specified by my bundler.
source "https://rubygems.org"
gem "sinatra"
gem "slim"
gem "dm-core"
gem "dm-migrations"
gem "rbing", :git => "https://github.com/KellyMahan/rbing.git"
When I run bundle install, it seems to download correctly.
Using rbing (1.1.0) from https://github.com/KellyMahan/rbing.git (at master) Enter your password to install the bundled RubyGems to your system:
Yet every time, low and behold, I am to discover the gem currently being used as listed in my "External Libraries" directory in RubyMine, it is using the old version of the gem, and not the forked version from github.
Ideas? Any help is very much appreciated.
-Adam
EDIT:
Also, could it be possible there could be any issues with the rvm I'm using to use 2.0.0 that RubyMine is using as my default gem location. Could the forked version be downloaded to somewhere other than this rvm path that my RubyMine uses by default?
EDIT again:
I updated the unregisted git root that was rbing, and after I even successfully made the commit and changes were made.....it didn't affect the version of rbing sitting in my external library directory. Any help to figure this out will be unbelievably appreciated, it's driving me nuts.