Created
May 4, 2010 05:43
-
-
Save defunkt/389001 to your computer and use it in GitHub Desktop.
Stacking ripenvs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ rip-env -c resque | |
$ rip-install resque | |
installed redis (1.0.7) | |
installed redis-namespace (0.4.2) | |
installed sinatra (0.9.2) | |
installed vegas (0.1.2) | |
installed resque (1.8.2) | |
$ rake | |
-bash: rake: command not found | |
$ rip-list | |
ripenv: resque | |
redis (1.0.7) | |
redis-namespace (0.4.2) | |
resque (1.8.2) | |
sinatra (0.9.2) | |
vegas (0.1.2) | |
$ rip-env -c system | |
$ rip-install rake | |
installed rake (0.8.7) | |
$ rip-list | |
ripenv: system | |
rake (0.8.7) | |
$ rip-env resque | |
$ rip-push system | |
$ rip-env | |
resque | |
$ rake | |
Loaded suite | |
BuildTest | |
test_build_extconf PASS | |
^C | |
$ rip-list | |
ripenv: resque | |
redis (1.0.7) | |
redis-namespace (0.4.2) | |
resque (1.8.2) | |
sinatra (0.9.2) | |
vegas (0.1.2) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Beautiful.