Refer to Bundler as a proper noun [ci skip]

This commit is contained in:
Ashwin Maroli 2020-10-29 22:44:50 +05:30 committed by GitHub
parent 5ec7a8e289
commit 4bda8cefb8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -13,7 +13,7 @@ different environments.
Create a `Gemfile` in the root. Create a `Gemfile` in the root.
The file should be called 'Gemfile' and should *not* have any extension. The file should be called 'Gemfile' and should *not* have any extension.
You can create a Gemfile with bundler and then add the `jekyll` gem: You can create a Gemfile with Bundler and then add the `jekyll` gem:
```sh ```sh
bundle init bundle init
@ -29,7 +29,7 @@ source "https://rubygems.org"
gem "jekyll" gem "jekyll"
``` ```
bundler installs the gems and creates a `Gemfile.lock` which locks the current Bundler installs the gems and creates a `Gemfile.lock` which locks the current
gem versions for a future `bundle install`. If you ever want to update your gem gem versions for a future `bundle install`. If you ever want to update your gem
versions you can run `bundle update`. versions you can run `bundle update`.