Sha256: 96387b4520dce248305a8445c235b9d3bdb9819624763d0ff3a7387bb0767afe
Contents?: true
Size: 1002 Bytes
Versions: 40
Compression:
Stored size: 1002 Bytes
Contents
# Recipes for using RVM on a server with capistrano. unless Capistrano::Configuration.respond_to?(:instance) abort "rvm/capistrano requires Capistrano >= 2." end Capistrano::Configuration.instance(true).load do # Taken from the capistrano code. def _cset(name, *args, &block) unless exists?(name) set(name, *args, &block) end end set :default_shell do shell = File.join(rvm_bin_path, "rvm-shell") ruby = rvm_ruby_string.to_s.strip shell = "#{shell} '#{ruby}'" unless ruby.empty? shell end # Let users set the type of their rvm install. _cset(:rvm_type, :system) # Let users override the rvm_bin_path _cset(:rvm_bin_path) do case rvm_type when :system_wide, :root, :system "/usr/local/bin" when :local, :user, :default "$HOME/.rvm/bin" end end # Use the default ruby. _cset(:rvm_ruby_string, "default") end # E.g, to use ree and rails 3: # # require 'rvm/capistrano' # set :rvm_ruby_string, "ree@rails3" #
Version data entries
40 entries across 40 versions & 2 rubygems