Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Details for preparing offline installation #155

Merged
merged 2 commits into from Mar 17, 2013
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
10 changes: 6 additions & 4 deletions content/rvm/offline.md
@@ -1,13 +1,12 @@
# RVM in offline mode

This is only rough description of the process, not all the steps need to work right away,
feel free to propose fixes here: [rvm offline source](https://github.com/rvm/rvm-site/tree/master/content/rvm/offline.md).
This is only rough description of the process, not all the steps need to work right away, feel free to propose fixes here: [rvm offline source](https://github.com/rvm/rvm-site/tree/master/content/rvm/offline.md).


## Installing RVM offline

1. Find package to download: https://github.com/wayneeseguin/rvm/tags
2. Download rvm: `curl -L https://github.com/wayneeseguin/rvm/tarball/stable -o rvm-stable.tar.gz`
1. Choose the version of RVM you wish to deploy from: https://github.com/wayneeseguin/rvm/tags
2. Download the rvm tarball: `curl -L https://github.com/wayneeseguin/rvm/tarball/stable -o rvm-stable.tar.gz`
3. Unpack it: `tar --strip-components=1 -xzf rvm-stable.tar.gz`
4. Install rvm: `./install --auto-dotfiles`
* use --help to get the options
Expand All @@ -27,6 +26,9 @@ feel free to propose fixes here: [rvm offline source](https://github.com/rvm/rvm
* Download with curl: `curl -L http://production.cf.rubygems.org/rubygems/rubygems-1.8.25.tgz -o rubygems-1.8.25.tgz`
3. Download yaml (required by rvm)
* Download from rvm.io with curl: `curl -L https://rvm.io/src/yaml-0.1.4.tar.gz -o https://rvm.io/src/yaml-0.1.4.tar.gz`
4. Save these packages for offline use by storing them in the rvm archive folder `$rvm_path/archives/` by default
* An alternate archive folder can be specified in the .rvmrc file
* sample usage: `echo rvm_archives_path=/path/to/tarballs/ ~/.rvmrc`


## Installing Ruby
Expand Down