I am trying to use capistrano to create a gemset rvm.
I am using rvm-capistrano stone.
Even I am explicitly trying to create it during setup, the capistrano shell command looks like this:
rvm_path=$HOME/.rvm/ $HOME/.rvm/bin/rvm-shell ' 1.9.3-p194@vatax ' -c 'rvm use 1.9.3-p194@vatax --create'
which obviously fails with an error message:
Gemset 'vatax' does not exist, 'rvm gemset create vatax' first, or append '--create'
In fact, I expected the stone to be able to create a gemset for me, but if not at least I would like to use a non-rvm shell to create a gemset inside capistrano.
source share