ruby on rails - In RVM, gem list command does not show installed gems -
in rails application
ruby -v ruby 1.9.2p180 (2011-02-18 revision 30909) [i686-linux]
when run
rvm gemset list
it specifies gemset i'm using
global => blackapp
now bundle install , gems installed successfully.when gem list, shows * local gems * empty.when run rvm gem list shows gems.so reason gem list not working.
i think used bundle pack , reason shows .
bundle complete! installed ./vendor/bundle
how overcome this?
bundle install
install gems vendor/cache
directory within rails app, not install them in gems directory. list gems installed bundler, use bundle list
Comments
Post a Comment