Capistrano tasks to work with RVM
Add this line to your application's Gemfile:
gem 'capistrano-rvm'
And then execute:
$ bundle
Or install it yourself as:
$ gem install capistrano-rvm
Add this after you define rvm_ruby_string:
require 'capistrano-rvm'
This gem includes the following tasks:
cap rvm # Installs rvm, ruby and bundler
cap rvm:create_gemset # Creates the gemset to use
cap rvm:default_ruby # sets as default current ruby version
cap rvm:install # Installs rvm
cap rvm:install_bundler # Install bundler gem
cap rvm:install_ruby # Installs ruby version specified in rvm_ruby_st...
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Added some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request