Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Bundler

pcasarettto
January 12, 2012

 Bundler

A short presentation on Bundler

pcasarettto

January 12, 2012
Tweet

More Decks by pcasarettto

Other Decks in Technology

Transcript

  1. Gemfile.lock • record of the exact versions of all of

    the gems that you used the last time you know for sure that the application worked Thursday, January 12, 12
  2. Updating • Change the Gemfile (gem rails, 3.0.0) • $

    bundle install • Test, fix, add Gemfile Gemfile.lock commit Thursday, January 12, 12
  3. Updating • $ bundle update nokogiri • Test, fix, commit

    • Test, fix, add Gemfile Gemfile.lock commit Thursday, January 12, 12
  4. Semantic Versioning • rack = 1.2.1(too much) • rack >=

    1.0 (too little) • rack ~> 1.2.1(too hopeful) Thursday, January 12, 12