diff --git a/CHANGELOG.md b/CHANGELOG.md index 466dace0..568eb515 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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] diff --git a/README.md b/README.md index 2e4b0371..a052db93 100644 --- a/README.md +++ b/README.md @@ -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 ``` diff --git a/docs/documentation/getting-started/installation/index.markdown b/docs/documentation/getting-started/installation/index.markdown index 1dc745a6..165e5a28 100644 --- a/docs/documentation/getting-started/installation/index.markdown +++ b/docs/documentation/getting-started/installation/index.markdown @@ -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 ```