Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to use e.g. system capistrano/ruco/xxx and not add them to every ruby/gemset i create.

So usually do rvm ruby_with_all_gems ... do_something ... rvm back_to_other

Is there any nice solution that i could use to do e.g. alias capree="rvm with ree cap" ?

share|improve this question

2 Answers

up vote 1 down vote accepted

rvm exec ree cap its already built i to rvm :>

share|improve this answer

I would suggest using a function:

Pseudo code:

capree () {
    save rvm state
    do rvm op with args "$@"
    restore rvm state
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.