Displaying 1 result from an estimated 1 matches for "install_rvm".
Did you mean:
install_rpm
2013 May 14
1
rvm/capistrano
...installed rvm,
ruby and the online_store gemset on my staging server:
set :rvm_ruby_string, ''ruby-1.9.3-p0@online_store''
set :rvm_autolibs_flag, "read-only"
set :rvm_type, :system
set :rvm_install_with_sudo, true
before ''deploy:setup'', ''rvm:install_rvm'' # install RVM
before ''deploy:setup'', ''rvm:install_ruby'' # install Ruby and create
gemset, OR:
before ''deploy:setup'', ''rvm:create_gemset'' # only create gemset
Now that''s what you would expect. However, I a...