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

Merge pull request #31 from artemeff/patch-1

Fix for the new capistrano
This commit is contained in:
Tom Clements 2013-10-08 11:13:56 -07:00
commit af3fd9a9f5
2 changed files with 6 additions and 6 deletions

View file

@ -6,7 +6,7 @@
<!--<li><a href="/documentation/overview/introductory-demo-video/">Introductory Demo Video</a></li>-->
<li class="divider"></li>
<h5>Getting Started</h5>
<li><a href="https://github.com/capistrano/capistrano/blob/v3/README.md">The Readme, start here!</a></li>
<li><a href="https://github.com/capistrano/capistrano/blob/master/README.md">The Readme, start here!</a></li>
<li><a href="/documentation/getting-started/installation/">Installation</a></li>
<li><a href="/documentation/getting-started/preparing-your-application/">Preparing Your Application</a></li>
<li><a href="/documentation/getting-started/authentication-and-authorisation/">Authentication & Authorisation</a></li>

View file

@ -20,26 +20,26 @@ will build the gem and install it locally. **The Gem is not yet availalble via
Rubygems.org.**
{% prism bash %}
$ gem install capistrano --pre --trust-policy HighSecurity
$ gem install capistrano
{% endprism %}
Or grab the bleeding edge head from:
{% prism bash %}
$ git clone -b v3 https://github.com/capistrano/capistrano.git
$ git clone https://github.com/capistrano/capistrano.git
$ cd capistrano
$ gem build *.gemspec
$ gem install *.gem
{% endprism %}
### Signed Rubygems
### Signed Rubygems (currently not signed)
As Capistrano is a signed gem, you should always be careful to use the
`--trust-policy` flag when installing Gems, or since Bundler 1.3 you should
use the same flag:
{% prism bash %}
$ gem install capistrano --pre --trust-policy HighSecurity
$ gem install capistrano --trust-policy HighSecurity
$ bundle install --trust-policy HighSecurity
{% endprism %}
@ -62,7 +62,7 @@ Add the following lines to the Gemfile to the `:development` group ideally.
{% prism ruby %}
group :development do
gem 'capistrano-rails', '~> 0.0.7'
gem 'capistrano-rails', '~> 1.0.0'
end
{% endprism %}