Skip to content

Commit

Permalink
Merge pull request #1964 from capistrano/require-false
Browse files Browse the repository at this point in the history
Recommend `require: false` in Gemfile
  • Loading branch information
will-in-wi committed Feb 1, 2018
2 parents 9c20be2 + 770a595 commit 25fb61b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ All notable changes to this project will be documented in this file, in reverse
**Capistrano uses a six-week release cadence.** Every six weeks, give or take, any changes in master will be published as a new rubygems version. If you'd like to use a feature or fix that is in master and you can't wait for the next planned release, put this in your project's Gemfile to use the master branch directly:

```ruby
gem "capistrano", :github => "capistrano/capistrano"
gem "capistrano", github: "capistrano/capistrano", require: false
```

## [master]
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,11 +103,11 @@ Capistrano 3 expects a POSIX shell like Bash or Sh. Shells like tcsh, csh, and s

### Install the Capistrano gem

Add Capistrano to your project's Gemfile:
Add Capistrano to your project's Gemfile using `require: false`:

``` ruby
group :development do
gem "capistrano", "~> 3.10"
gem "capistrano", "~> 3.10", require: false
end
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ Add the following lines to the Gemfile:

```ruby
group :development do
gem 'capistrano-rails', '~> 1.1'
gem "capistrano", "~> 3.10", require: false
gem "capistrano-rails", "~> 1.3", require: false
end
```

Expand Down

0 comments on commit 25fb61b

Please sign in to comment.