How do I make the “1.9.2” Ruby string point to the final release with RVM?
up vote
1
down vote
favorite
I'm using RVM to manage my Ruby environment on OSX, and currently it's interpreting '1.9.2' as ruby-1.9.2-rc2
instead of the final release. How can I update this to make it behave as expected?
bash ruby rvm
|
show 1 more comment
up vote
1
down vote
favorite
I'm using RVM to manage my Ruby environment on OSX, and currently it's interpreting '1.9.2' as ruby-1.9.2-rc2
instead of the final release. How can I update this to make it behave as expected?
bash ruby rvm
@Adam this doesn't seem to me that it has anything to do with unix... this seems like a Ruby question... SO? I've no clue what this has to do with bash
– xenoterracide
Sep 2 '10 at 19:07
@xenoterracide RVM is a Ruby version manager written in bash, and entirely specific to unix systems. It manipulates your shell environment to allow you to use multiple versions & gemsets in one environment.
– Adam Lassek
Sep 3 '10 at 2:09
@xenoterracide I was going to addrvm
andruby
as tags but I'm not allowed.
– Adam Lassek
Sep 3 '10 at 2:14
@Adam so it's perlbrew for ruby...
– xenoterracide
Sep 3 '10 at 2:43
@xenoterracide Yes, same idea but with the added capability of being able to define multiple independent gemsets in addition to Ruby installations.
– Adam Lassek
Sep 3 '10 at 21:10
|
show 1 more comment
up vote
1
down vote
favorite
up vote
1
down vote
favorite
I'm using RVM to manage my Ruby environment on OSX, and currently it's interpreting '1.9.2' as ruby-1.9.2-rc2
instead of the final release. How can I update this to make it behave as expected?
bash ruby rvm
I'm using RVM to manage my Ruby environment on OSX, and currently it's interpreting '1.9.2' as ruby-1.9.2-rc2
instead of the final release. How can I update this to make it behave as expected?
bash ruby rvm
bash ruby rvm
edited Nov 27 at 22:09
Michael Prokopec
74416
74416
asked Sep 1 '10 at 3:52
Adam Lassek
1264
1264
@Adam this doesn't seem to me that it has anything to do with unix... this seems like a Ruby question... SO? I've no clue what this has to do with bash
– xenoterracide
Sep 2 '10 at 19:07
@xenoterracide RVM is a Ruby version manager written in bash, and entirely specific to unix systems. It manipulates your shell environment to allow you to use multiple versions & gemsets in one environment.
– Adam Lassek
Sep 3 '10 at 2:09
@xenoterracide I was going to addrvm
andruby
as tags but I'm not allowed.
– Adam Lassek
Sep 3 '10 at 2:14
@Adam so it's perlbrew for ruby...
– xenoterracide
Sep 3 '10 at 2:43
@xenoterracide Yes, same idea but with the added capability of being able to define multiple independent gemsets in addition to Ruby installations.
– Adam Lassek
Sep 3 '10 at 21:10
|
show 1 more comment
@Adam this doesn't seem to me that it has anything to do with unix... this seems like a Ruby question... SO? I've no clue what this has to do with bash
– xenoterracide
Sep 2 '10 at 19:07
@xenoterracide RVM is a Ruby version manager written in bash, and entirely specific to unix systems. It manipulates your shell environment to allow you to use multiple versions & gemsets in one environment.
– Adam Lassek
Sep 3 '10 at 2:09
@xenoterracide I was going to addrvm
andruby
as tags but I'm not allowed.
– Adam Lassek
Sep 3 '10 at 2:14
@Adam so it's perlbrew for ruby...
– xenoterracide
Sep 3 '10 at 2:43
@xenoterracide Yes, same idea but with the added capability of being able to define multiple independent gemsets in addition to Ruby installations.
– Adam Lassek
Sep 3 '10 at 21:10
@Adam this doesn't seem to me that it has anything to do with unix... this seems like a Ruby question... SO? I've no clue what this has to do with bash
– xenoterracide
Sep 2 '10 at 19:07
@Adam this doesn't seem to me that it has anything to do with unix... this seems like a Ruby question... SO? I've no clue what this has to do with bash
– xenoterracide
Sep 2 '10 at 19:07
@xenoterracide RVM is a Ruby version manager written in bash, and entirely specific to unix systems. It manipulates your shell environment to allow you to use multiple versions & gemsets in one environment.
– Adam Lassek
Sep 3 '10 at 2:09
@xenoterracide RVM is a Ruby version manager written in bash, and entirely specific to unix systems. It manipulates your shell environment to allow you to use multiple versions & gemsets in one environment.
– Adam Lassek
Sep 3 '10 at 2:09
@xenoterracide I was going to add
rvm
and ruby
as tags but I'm not allowed.– Adam Lassek
Sep 3 '10 at 2:14
@xenoterracide I was going to add
rvm
and ruby
as tags but I'm not allowed.– Adam Lassek
Sep 3 '10 at 2:14
@Adam so it's perlbrew for ruby...
– xenoterracide
Sep 3 '10 at 2:43
@Adam so it's perlbrew for ruby...
– xenoterracide
Sep 3 '10 at 2:43
@xenoterracide Yes, same idea but with the added capability of being able to define multiple independent gemsets in addition to Ruby installations.
– Adam Lassek
Sep 3 '10 at 21:10
@xenoterracide Yes, same idea but with the added capability of being able to define multiple independent gemsets in addition to Ruby installations.
– Adam Lassek
Sep 3 '10 at 21:10
|
show 1 more comment
1 Answer
1
active
oldest
votes
up vote
2
down vote
accepted
Since this got no response I asked this question and got an answer on Stack Overflow from michaelmichael.
Make sure you've updated rvm with the
rvm update
command. From there you can install 1.9.2 withrvm install 1.9.2
. It'll install and compile ruby 1.9.2-p0. From there, it should interpret1.9.2
as the final release. I'm also on a mac, and this worked for me after having rc2 installed.
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
2
down vote
accepted
Since this got no response I asked this question and got an answer on Stack Overflow from michaelmichael.
Make sure you've updated rvm with the
rvm update
command. From there you can install 1.9.2 withrvm install 1.9.2
. It'll install and compile ruby 1.9.2-p0. From there, it should interpret1.9.2
as the final release. I'm also on a mac, and this worked for me after having rc2 installed.
add a comment |
up vote
2
down vote
accepted
Since this got no response I asked this question and got an answer on Stack Overflow from michaelmichael.
Make sure you've updated rvm with the
rvm update
command. From there you can install 1.9.2 withrvm install 1.9.2
. It'll install and compile ruby 1.9.2-p0. From there, it should interpret1.9.2
as the final release. I'm also on a mac, and this worked for me after having rc2 installed.
add a comment |
up vote
2
down vote
accepted
up vote
2
down vote
accepted
Since this got no response I asked this question and got an answer on Stack Overflow from michaelmichael.
Make sure you've updated rvm with the
rvm update
command. From there you can install 1.9.2 withrvm install 1.9.2
. It'll install and compile ruby 1.9.2-p0. From there, it should interpret1.9.2
as the final release. I'm also on a mac, and this worked for me after having rc2 installed.
Since this got no response I asked this question and got an answer on Stack Overflow from michaelmichael.
Make sure you've updated rvm with the
rvm update
command. From there you can install 1.9.2 withrvm install 1.9.2
. It'll install and compile ruby 1.9.2-p0. From there, it should interpret1.9.2
as the final release. I'm also on a mac, and this worked for me after having rc2 installed.
edited May 23 '17 at 12:39
Community♦
1
1
answered Sep 3 '10 at 2:13
Adam Lassek
1264
1264
add a comment |
add a comment |
Thanks for contributing an answer to Unix & Linux Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f1454%2fhow-do-i-make-the-1-9-2-ruby-string-point-to-the-final-release-with-rvm%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
@Adam this doesn't seem to me that it has anything to do with unix... this seems like a Ruby question... SO? I've no clue what this has to do with bash
– xenoterracide
Sep 2 '10 at 19:07
@xenoterracide RVM is a Ruby version manager written in bash, and entirely specific to unix systems. It manipulates your shell environment to allow you to use multiple versions & gemsets in one environment.
– Adam Lassek
Sep 3 '10 at 2:09
@xenoterracide I was going to add
rvm
andruby
as tags but I'm not allowed.– Adam Lassek
Sep 3 '10 at 2:14
@Adam so it's perlbrew for ruby...
– xenoterracide
Sep 3 '10 at 2:43
@xenoterracide Yes, same idea but with the added capability of being able to define multiple independent gemsets in addition to Ruby installations.
– Adam Lassek
Sep 3 '10 at 21:10