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

Fix repo/repo_url naming

This commit is contained in:
Lee Hambley 2013-06-30 14:23:55 +02:00
parent d63d8b427e
commit 3c4ad9334f
2 changed files with 6 additions and 6 deletions

View file

@ -243,7 +243,7 @@ them a little:</p>
<div>
<pre data-line=''><code class='language-ruby'>set :application, &#39;my app name&#39;
set :repo, &#39;git@example.com:me/my_repo.git&#39;
set :repo_url, &#39;git@example.com:me/my_repo.git&#39;
ask :branch, proc { `git rev-parse --abbrev-ref HEAD`.chomp }</code></pre>
</div>
@ -266,7 +266,7 @@ forked to the Capistrano repository, but you can find the (unchanged) original
<div>
<pre data-line=''><code class='language-ruby'>set :application, &#39;rails3-bootstrap-devise-cancan-demo&#39;
set :repo, &#39;https://github.com/capistrano/rails3-bootstrap-devise-cancan&#39;
set :repo_url, &#39;https://github.com/capistrano/rails3-bootstrap-devise-cancan&#39;
set :branch, &#39;master&#39;</code></pre>
</div>
@ -435,7 +435,7 @@ them a little:</p>
<div>
<pre data-line=''><code class='language-ruby'>set :application, &#39;my app name&#39;
set :repo, &#39;git@example.com:me/my_repo.git&#39;
set :repo_url, &#39;git@example.com:me/my_repo.git&#39;
ask :branch, proc { `git rev-parse --abbrev-ref HEAD`.chomp }</code></pre>
</div>
@ -458,7 +458,7 @@ forked to the Capistrano repository, but you can find the (unchanged) original
<div>
<pre data-line=''><code class='language-ruby'>set :application, &#39;rails3-bootstrap-devise-cancan-demo&#39;
set :repo, &#39;https://github.com/capistrano/rails3-bootstrap-devise-cancan&#39;
set :repo_url, &#39;https://github.com/capistrano/rails3-bootstrap-devise-cancan&#39;
set :branch, &#39;master&#39;</code></pre>
</div>

View file

@ -147,7 +147,7 @@ them a little:
{% prism ruby %}
set :application, 'my app name'
set :repo, 'git@example.com:me/my_repo.git'
set :repo_url, 'git@example.com:me/my_repo.git'
ask :branch, proc { `git rev-parse --abbrev-ref HEAD`.chomp }
{% endprism %}
@ -170,7 +170,7 @@ forked to the Capistrano repository, but you can find the (unchanged) original
{% prism ruby %}
set :application, 'rails3-bootstrap-devise-cancan-demo'
set :repo, 'https://github.com/capistrano/rails3-bootstrap-devise-cancan'
set :repo_url, 'https://github.com/capistrano/rails3-bootstrap-devise-cancan'
set :branch, 'master'
{% endprism %}