Skip to content

Instantly share code, notes, and snippets.

Created March 8, 2012 07:23
Show Gist options
  • Save anonymous/1999380 to your computer and use it in GitHub Desktop.
Save anonymous/1999380 to your computer and use it in GitHub Desktop.
  • willing to hit the network
    • causes:
      • Definition#resolve_remotely!
      • invoked by bundle outdated based on no --local
      • invoked by Installer#run based on no --local and no vendor/cache
    • source.remote!
    • rubygems: query rubygems.org
    • git: clone/fetch
  • willing to do local work
    • source.cached!
      • Definition#resolve_with_cache!
      • invoked by CLI#outdated based on --local
      • invoked by CLI#cache
      • invoked by Installer#run based on --local or `vendor/cache
    • rubygems: extract .gem files
    • git: local checkout different ref
  • only willing to look at what is already there
    • none
    • rubygems: only existing directories with extracted gemspecs
    • git: cannot do git checkout or any git operations
    • materializing lazy specs without CLI support (Bundler.setup)
    • bundle check

These are mutually exclusive

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment