I want to use a gem from git. So in app''s Gemfile I write:> gem "some_gem" :git => https://github.com/foo/bar.gitThen I have to install that gem with bundler:> bundler installor> bundler update barWhen I do this all works just fine, the gem from git is in use. But where is that gem locally stored? Where does bundler hides it? I connot find it neither in /gems directory nor in app''s vendor directory. Where does> bundler installinstalls that git gem? -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/c9b8248b0cbb541a5f8b35e037acb114%40ruby-forum.com. For more options, visit https://groups.google.com/groups/opt_out.
On 17 June 2013 21:00, Wins Lin <lists-fsXkhYbjdPsEEoCn2XhGlw@public.gmane.org> wrote:> I want to use a gem from git. So in app''s Gemfile I write: >> gem "some_gem" :git => https://github.com/foo/bar.git > > Then I have to install that gem with bundler: >> bundler install > or >> bundler update bar > > When I do this all works just fine, the gem from git is in use. But > where is that gem locally stored? Where does bundler hides it? I connot > find it > neither in /gems directory nor in app''s vendor directory. Where does >> bundler install > installs that git gem?gem list some_gem -d Colin -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/CAL%3D0gLvdBDp6qqjb-e0tHnNgaa2O6MosQk_xFb63zp68H5Cctg%40mail.gmail.com. For more options, visit https://groups.google.com/groups/opt_out.
Colin Law <clanlaw-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org> wrote:> On 17 June 2013 21:00, Wins Lin <lists-fsXkhYbjdPsEEoCn2XhGlw@public.gmane.org> wrote: > > I want to use a gem from git. So in app''s Gemfile I write: > >> gem "some_gem" :git => https://github.com/foo/bar.git > > > > Then I have to install that gem with bundler: > >> bundler install > > or > >> bundler update bar > > > > When I do this all works just fine, the gem from git is in use. But > > where is that gem locally stored? Where does bundler hides it? I connot > > find it > > neither in /gems directory nor in app''s vendor directory. Where does > >> bundler install > > installs that git gem? > > gem list some_gem -d > > Colinor: bundle show some_gem -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/51bfd84f.2681320a.6a1f.51a3%40mx.google.com. For more options, visit https://groups.google.com/groups/opt_out.
tamouse m. wrote in post #1112726:> Colin Law <clanlaw-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org> wrote: >> >> gem list some_gem -d >> >> Colin > > or: > > bundle show some_gemThe second one did the trick. It turns out that there is also Bundler''s directory where it stores gems. On my Windows machine it is here:> C:\RailsInstaller\Ruby1.9.3\lib\ruby\gems\1.9.1\bundler\gemsThank you. -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/6600461dd8379e0af1a87f34eb1d8925%40ruby-forum.com. For more options, visit https://groups.google.com/groups/opt_out.