Documentation cleanups
[rvm-ruby.git] / README
1 This is basically a .spec file which builds and packages RVM and selected Rubies & Gems into a RPM. RVM is installed system-wide for all users and is ready to use immediately, with no compilation needed on the target machine.
2
3 Just clone this repo, customize the rubies and gems needed as indicated below and launch:
4
5     ./rpm/create_rpm_from_here
6
7 The `rvm-ruby.spec` file is based on <https://github.com/mdkent/rvm-rpm/blob/master/SPECS/rvm-ruby.spec>. I applied some customizations to make it compatibe with the small script I made to create the RPM. What i added is at the end of the `%install` section, beginning at
8
9     # At this point, install of RVM is finished
10     # Now install some rubies
11     (...)
12     ruby_tag=ruby-1.9.3-p0
13     rvm install $ruby_tag
14     rvm use $ruby_tag
15     gem install bundler --no-ri --no-rdoc
16     (...)
17
18 There, I added instructions to build and packages some rubies and gems i want to deploy on all my servers. Up to you to modify that for your own needs.
19
20 Tested with stable RVM version 1.20.10