1
0
Fork 0
mirror of https://github.com/capistrano/capistrano synced 2023-03-27 23:21:18 -04:00

Reminder to use :require => false in the Gemfile

This commit is contained in:
Lee Hambley 2013-07-30 11:39:47 +02:00
parent 026f144581
commit d5135d50d2
2 changed files with 3 additions and 3 deletions

View file

@ -110,7 +110,7 @@
<div class="content">
<h2>Upgrading from v2.x.x</h2>
<p>1.
Update your Gemfile: <code>gem &#39;capistrano&#39;, &#39;~&gt; 3.0&#39;</code></p>
Update your Gemfile: <code>gem &#39;capistrano&#39;, &#39;~&gt; 3.0&#39;, require: false</code></p>
<p>If you deploy Rails, you wil also need <code>capistrano-rails</code> gem (Rails integration was moved out from Capistrano 3.x).</p>
@ -210,7 +210,7 @@ role :db, %w{example.com}</code></pre>
<!-- </div> -->
<!-- <p>1.
Update your Gemfile: <code>gem &#39;capistrano&#39;, &#39;~&gt; 3.0&#39;</code></p>
Update your Gemfile: <code>gem &#39;capistrano&#39;, &#39;~&gt; 3.0&#39;, require: false</code></p>
<p>If you deploy Rails, you wil also need <code>capistrano-rails</code> gem (Rails integration was moved out from Capistrano 3.x).</p>

View file

@ -4,7 +4,7 @@ layout: default
---
1.
Update your Gemfile: `gem 'capistrano', '~> 3.0'`
Update your Gemfile: `gem 'capistrano', '~> 3.0', require: false`
If you deploy Rails, you wil also need `capistrano-rails` gem (Rails integration was moved out from Capistrano 3.x).