git - Remote gem not installing into gemset with bundle -


i've forked gem , updated , using project. i've added following line gemfile:

gem 'pipedrive-ruby', :git => "git://github.com/biznickman/pipedrive-ruby"

i run bundle install , outputs:

using pipedrive-ruby 0.3.4 git://github.com/biznickman/pipedrive-ruby (at master)

however when run gem list current gemset pipedrive-ruby gem not listed. how gemfile included local gemset?

gem list lists gems installed in system. when use gem 'foo', git: 'git://foo.bar/baz', gem installed in different place system gems.

because rubygems lacks ability handle gems git, gems installed git repository not show in gem list. — http://bundler.io/v1.10/git.html

instead, can view gems used project bundle list.

you can find location of installed gem using bundle show too:

bundle show pipedrive-ruby 

Comments

Popular posts from this blog

searchKeyword not working in AngularJS filter -

sequelize.js - Sequelize: sort by enum cases -

user interface - how to replace an ongoing process of image capture from another process call over the same ImageLabel in python's GUI TKinter -