README.md in capistrano-rbenv-2.0.0 vs README.md in capistrano-rbenv-2.0.1
- old
+ new
@@ -13,11 +13,11 @@
## Installation
Add this line to your application's Gemfile:
gem 'capistrano', '~> 3.0'
- gem 'capistrano-rbenv', github: "capistrano/rbenv"
+ gem 'capistrano-rbenv', '~> 2.0'
And then execute:
$ bundle install
@@ -30,9 +30,10 @@
# config/deploy.rb
set :rbenv_type, :user # or :system, depends on your rbenv setup
set :rbenv_ruby, '2.0.0-p247'
set :rbenv_prefix, "RBENV_ROOT=#{fetch(:rbenv_path)} RBENV_VERSION=#{fetch(:rbenv_ruby)} #{fetch(:rbenv_path)}/bin/rbenv exec"
set :rbenv_map_bins, %w{rake gem bundle ruby rails}
+ set :rbenv_roles, :all # default value
If your rbenv is located in some custom path, you can use `rbenv_custom_path` to set it.
## Contributing