Skip to content

Commit

Permalink
Site updates.
Browse files Browse the repository at this point in the history
  • Loading branch information
wayneeseguin committed Nov 23, 2009
1 parent c8f5868 commit 3cee14c
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 16 deletions.
12 changes: 5 additions & 7 deletions site/content/patchlevels.html.haml
Expand Up @@ -9,9 +9,7 @@

%pre.code
:preserve
∴ rvm 1.8.7 -l 160

ruby 1.8.7 is not installed.
∴ rvm install ruby-1.8.7-p160

Installing Ruby from source to: ...

Expand All @@ -23,15 +21,15 @@
Switching between patchlevels is very easy:
%pre.code
:preserve
∴ rvm 1.8.7 -l 160
∴ rvm ruby-1.8.7-p160

Switching to ruby 1.8.7 160 ...

∴ ruby -v

ruby 1.8.7 (2009-04-08 patchlevel 160) [i686-darwin9.8.0]

∴ rvm 1.8.7 -l 174
∴ rvm ruby-1.8.7-p174

Switching to ruby 1.8.7 174 ...

Expand All @@ -42,5 +40,5 @@
Don't forget about the shorthand due to defaults. The above is equivalent to
%pre.code
:preserve
∴ rvm 1.8.7 -l 160 # same as: rvm 1.8.7 -l 160
∴ rvm 1.8.7 -l 174 # same as: rvm 1.8.7 -l 174
∴ rvm 1.8.7-p160 # same as: rvm ruby-1.8.7-p160
∴ rvm 1.8.7-p174 # same as: rvm ruby-1.8.7-p174
4 changes: 2 additions & 2 deletions site/content/revisions.html.haml
Expand Up @@ -4,13 +4,13 @@
Moving beyond official patch levels and tags we can also use any arbitrary revision for 1.8.X and 1.9.X
%pre.code
:preserve
∴ rvm 1.8.6 --rev 24700
∴ rvm install 1.8.6-r24700 ; rvm 1.8.6-r24700

∴ ruby -v

ruby 1.8.6 (2009-08-26 patchlevel 387) [i686-darwin10.0.0]

∴ which ruby

\/Users/wayne/.rvm/ruby-1.8.6-24700/bin/ruby
/Users/wayne/.rvm/ruby-1.8.6-24700/bin/ruby
4 changes: 2 additions & 2 deletions site/content/tags.html.haml
Expand Up @@ -2,9 +2,9 @@
Repository Tags
%pre.code
:preserve
∴ rvm 1.8.6 --tag v1_8_6_111
∴ rvm install 1.8.6-tv1_8_6_111 ; rvm 1.8.6-tv1_8_6_111

∴ which ruby

\/Users/wayne/.rvm/ruby-1.8.6-v1_8_6_111/bin/ruby
/Users/wayne/.rvm/ruby-1.8.6-v1_8_6_111/bin/ruby
6 changes: 3 additions & 3 deletions site/output/patchlevels/index.html
Expand Up @@ -221,16 +221,16 @@ <h1>
For example, rvm (as of this writing) defaults ruby 1.8.7 to patchlevel 174.
If you wanted to switch to patchlevel 160 to test something out you can easily do that by:
</p>
<pre class='code'>∴ rvm 1.8.7 -l 160&#x000A;&#x000A;ruby 1.8.7 is not installed.&#x000A;&#x000A;Installing Ruby from source to: ...&#x000A;&#x000A;∴ ruby -v&#x000A;&#x000A;ruby 1.8.7 (2009-04-08 patchlevel 160) [i686-darwin9.8.0]</pre>
<pre class='code'>∴ rvm install ruby-1.8.7-p160&#x000A;&#x000A;Installing Ruby from source to: ...&#x000A;&#x000A;∴ ruby -v&#x000A;&#x000A;ruby 1.8.7 (2009-04-08 patchlevel 160) [i686-darwin9.8.0]</pre>
<p>
which will download, compile and install ruby-1.8.7-p160 and then set it to current.
Switching between patchlevels is very easy:
</p>
<pre class='code'>∴ rvm 1.8.7 -l 160&#x000A;&#x000A;Switching to ruby 1.8.7 160 ...&#x000A;&#x000A;∴ ruby -v&#x000A;&#x000A;ruby 1.8.7 (2009-04-08 patchlevel 160) [i686-darwin9.8.0]&#x000A;&#x000A;∴ rvm 1.8.7 -l 174&#x000A;&#x000A;Switching to ruby 1.8.7 174 ...&#x000A;&#x000A;∴ ruby -v&#x000A;&#x000A;ruby 1.8.7 (2009-06-12 patchlevel 174) [i686-darwin9.8.0]</pre>
<pre class='code'>∴ rvm ruby-1.8.7-p160&#x000A;&#x000A;Switching to ruby 1.8.7 160 ...&#x000A;&#x000A;∴ ruby -v&#x000A;&#x000A;ruby 1.8.7 (2009-04-08 patchlevel 160) [i686-darwin9.8.0]&#x000A;&#x000A;∴ rvm ruby-1.8.7-p174&#x000A;&#x000A;Switching to ruby 1.8.7 174 ...&#x000A;&#x000A;∴ ruby -v&#x000A;&#x000A;ruby 1.8.7 (2009-06-12 patchlevel 174) [i686-darwin9.8.0]</pre>
<p>
Don't forget about the shorthand due to defaults. The above is equivalent to
</p>
<pre class='code'>∴ rvm 1.8.7 -l 160 # same as: rvm 1.8.7 -l 160&#x000A;∴ rvm 1.8.7 -l 174 # same as: rvm 1.8.7 -l 174</pre>
<pre class='code'>∴ rvm 1.8.7-p160 # same as: rvm ruby-1.8.7-p160&#x000A;∴ rvm 1.8.7-p174 # same as: rvm ruby-1.8.7-p174</pre>
<a name='bottom'></a>
</div>
<div class='span-5 prepend-1 rightlast' id='sidebar'>
Expand Down
2 changes: 1 addition & 1 deletion site/output/revisions/index.html
Expand Up @@ -217,7 +217,7 @@ <h1>
<p>
Moving beyond official patch levels and tags we can also use any arbitrary revision for 1.8.X and 1.9.X
</p>
<pre class='code'>∴ rvm 1.8.6 --rev 24700&#x000A;&#x000A;∴ ruby -v&#x000A;&#x000A;ruby 1.8.6 (2009-08-26 patchlevel 387) [i686-darwin10.0.0]&#x000A;&#x000A;∴ which ruby&#x000A;&#x000A;\/Users/wayne/.rvm/ruby-1.8.6-24700/bin/ruby</pre>
<pre class='code'>∴ rvm install 1.8.6-r24700 ; rvm 1.8.6-r24700&#x000A;&#x000A;∴ ruby -v&#x000A;&#x000A;ruby 1.8.6 (2009-08-26 patchlevel 387) [i686-darwin10.0.0]&#x000A;&#x000A;∴ which ruby&#x000A;&#x000A;/Users/wayne/.rvm/ruby-1.8.6-24700/bin/ruby</pre>
<a name='bottom'></a>
</div>
<div class='span-5 prepend-1 rightlast' id='sidebar'>
Expand Down
2 changes: 1 addition & 1 deletion site/output/tags/index.html
Expand Up @@ -214,7 +214,7 @@ <h2>
<h1>
Repository Tags
</h1>
<pre class='code'>∴ rvm 1.8.6 --tag v1_8_6_111&#x000A;&#x000A;∴ which ruby&#x000A;&#x000A;\/Users/wayne/.rvm/ruby-1.8.6-v1_8_6_111/bin/ruby</pre>
<pre class='code'>∴ rvm install 1.8.6-tv1_8_6_111 ; rvm 1.8.6-tv1_8_6_111&#x000A;&#x000A;∴ which ruby&#x000A;&#x000A;/Users/wayne/.rvm/ruby-1.8.6-v1_8_6_111/bin/ruby</pre>
<a name='bottom'></a>
</div>
<div class='span-5 prepend-1 rightlast' id='sidebar'>
Expand Down

0 comments on commit 3cee14c

Please sign in to comment.