Skip to content

Instantly share code, notes, and snippets.

@jendiamond
Created August 19, 2013 18:44
Show Gist options
  • Save jendiamond/6272588 to your computer and use it in GitHub Desktop.
Save jendiamond/6272588 to your computer and use it in GitHub Desktop.
Getting Started Bundler
.contents
.bullet
.description
Getting started with bundler is easy! Open a terminal window and run this command:
:highlight_plain
$ gem install bundler
.bullet
.description
Specify your dependencies in a Gemfile in your project's root:
:highlight_ruby
source 'https://rubygems.org'
gem 'nokogiri'
gem 'rack', '~>1.1'
gem 'rspec', :require => 'spec'
= link_to 'Learn More: Gemfiles', '/v1.3/gemfile.html'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment