I specified a custom gem repo source for bundler.
Some gem dependencies are not in my repo.
Let say I have rails 2.3.11 in my own repo but I don’t have any of it’s dependencies on my repo
e.g
rails (2.3.11)
actionmailer (= 2.3.11)
actionpack (= 2.3.11)
activerecord (= 2.3.11)
activeresource (= 2.3.11)
activesupport (= 2.3.11)
rake (>= 0.8.3)
but it would still install rails’ dependencies. Does it have a DEFAULT gem repo source?
No, bundler does not have a default source.
If there is no source specified, you’ll get
If bundler can’t find a specified gem locally or in the source(s) you have specified (e.g. your own repository), then you’ll get
If you have run bundle install against your own repository, you don’t have any other sources listed, and it worked when you didn’t expect it to, then I would guess that it’s using gems already on your machine.