Why doesn't the command `gem list` include gems installed with bundler's :git option?

Viewed 6656

In our rails 3.2 Gemfile, there are some gems installed with option :git pointing to repo on github, such as:

gem 'ruote', :git => 'http://github.com/jmettraux/ruote.git'

After bundle install, we type gem list to list all the gems installed. However gem list does not list ruote as a gem installed. As a matter of fact, there is no ruote listed at all. We notice the same thing also happens to all rails engines which are installed with option :git pointing to repo on github. Why gem list does not list all gems installed? How can we assure that ruote is correctly installed?

3 Answers
Related