Skip to content
This repository has been archived by the owner on Apr 14, 2021. It is now read-only.

Commit

Permalink
trailing whitespace in the manpages
Browse files Browse the repository at this point in the history
  • Loading branch information
indirect committed Aug 15, 2010
1 parent 681a5cb commit 3b68d1d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions man/bundle-install.ronn
Expand Up @@ -72,11 +72,11 @@ defaults optimized for deployment, use the `--deployment` flag.

1. A `Gemfile.lock` is required.

To ensure that the same versions of the gems you developed with
To ensure that the same versions of the gems you developed with
and tested with are also used in deployments, a `Gemfile.lock`
is required.

This is mainly to ensure that you remember to check your
This is mainly to ensure that you remember to check your
`Gemfile.lock` into version control.

2. The `Gemfile.lock` must be up to date
Expand Down Expand Up @@ -140,7 +140,7 @@ However, you can explicitly tell bundler to skip installing
certain groups with the `--without` option. This option takes
a space-separated list of groups.

While the `--without` option will skip _installing_ the gems in the
While the `--without` option will skip _installing_ the gems in the
specified groups, it will still _download_ those gems and use them to
resolve the dependencies of every gem in your `Gemfile`.

Expand Down Expand Up @@ -260,7 +260,7 @@ Let's take a look at an example. Here's your original `Gemfile`:

In this case, both `actionpack` and `activemerchant` depend on
`activesupport`. The `actionpack` gem depends on `activesupport 2.3.8`
and `rack ~> 1.1.0`, while the `activemerchant` gem depends on
and `rack ~> 1.1.0`, while the `activemerchant` gem depends on
`activesupport >= 2.3.2`, `braintree >= 2.0.0`, and `builder >= 2.0.0`.

When the dependencies are first resolved, Bundler will select
Expand Down
4 changes: 2 additions & 2 deletions man/gemfile.5.ronn
Expand Up @@ -87,7 +87,7 @@ list of groups separated by spaces.
bundle install --without development test

After running `bundle install --without test`, bundler will remember that you excluded
the test group in the last installation. The next time you run `bundle install`,
the test group in the last installation. The next time you run `bundle install`,
without any `--without option`, bundler will recall it.

Also, calling `Bundler.setup` with no parameters, or calling `require "bundler/setup"`
Expand All @@ -101,7 +101,7 @@ groups. For more details, see [Understanding Bundler](http://gembundler.com/v1.0

### PLATFORMS (:platforms)

If a gem should only be used in a particular platform or set of platforms, you can
If a gem should only be used in a particular platform or set of platforms, you can
specify them. Platforms are essentially identical to groups, except that you do not
need to use the `--without` install-time flag to exclude groups of gems for other
platforms.
Expand Down

0 comments on commit 3b68d1d

Please sign in to comment.