From 3c91611ffa5525f3a9cd16af4652b2f17a2a1894 Mon Sep 17 00:00:00 2001 From: Faraz Yashar Date: Mon, 22 Jul 2013 11:42:52 -0400 Subject: [PATCH] Correct Gemfile line for capistrano-rails fixes capistrano/capistrano#577 --- documentation/getting-started/installation/index.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documentation/getting-started/installation/index.markdown b/documentation/getting-started/installation/index.markdown index c7f0e8da..13991756 100644 --- a/documentation/getting-started/installation/index.markdown +++ b/documentation/getting-started/installation/index.markdown @@ -62,7 +62,7 @@ Add the following lines to the Gemfile, to the group `:development` ideally. {% prism ruby %} group :development do - gem 'capistrano-rails', github: 'capistrano/capistrano-rails', branch: 'v3' + gem 'capistrano-rails', '~> 0.0.7' end {% endprism %}