diff --git a/_site/documentation/getting-started/preparing-your-application/index.html b/_site/documentation/getting-started/preparing-your-application/index.html index 8b7d8f94..ce4d7327 100644 --- a/_site/documentation/getting-started/preparing-your-application/index.html +++ b/_site/documentation/getting-started/preparing-your-application/index.html @@ -243,7 +243,7 @@ them a little:

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 }
@@ -266,7 +266,7 @@ forked to the Capistrano repository, but you can find the (unchanged) original
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'
@@ -435,7 +435,7 @@ them a little:

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 }
@@ -458,7 +458,7 @@ forked to the Capistrano repository, but you can find the (unchanged) original
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'
diff --git a/documentation/getting-started/preparing-your-application/index.markdown b/documentation/getting-started/preparing-your-application/index.markdown index 217d8b00..5ef32a12 100644 --- a/documentation/getting-started/preparing-your-application/index.markdown +++ b/documentation/getting-started/preparing-your-application/index.markdown @@ -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 %}