-
-
Save dacort/336051 to your computer and use it in GitHub Desktop.
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
# This example shows how to setup an environment with a 'riak' gem set | |
# running Rails 3 (beta) + ripple (for riak) under ruby 1.9.1 . | |
∴ rvm update --head | |
# ((Open a new shell)) | |
# If you do not already have the ruby interpreter installed, install it: | |
∴ rvm install 1.9.1 | |
# Use the ruby + gem set | |
∴ rvm --create use 1.9.1%riak | |
# Make sure rubygems is up to date | |
∴ gem update --system | |
# Download the gems(et) file: | |
∴ curl -L http://rvm.beginrescueend.com/gemsets/riak.gems -o riak.gems | |
# Load the gems(et) file into the current gem environment. | |
∴ rvm gems load riak.gems | |
# Now go read ripple's readme to see how to properly use riak with ripple: | |
# http://seancribbs.github.com/ripple/ | |
# | |
# Questions on riak / ripple may be asked in #riak on irc.freenode.net | |
# |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment