Created
August 19, 2013 18:44
-
-
Save jendiamond/6272588 to your computer and use it in GitHub Desktop.
Getting Started Bundler
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.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