Skip to content

Instantly share code, notes, and snippets.

namespace :rvm do
task :trust_ruby_env do
on roles(:web) do
within release_path do
execute "#{fetch(:rvm_path)}/bin/rvm", "rvmrc trust #{release_path}/.ruby-env"
end
end
end
end