Ruby

From KevinWiki

(Difference between revisions)
Jump to: navigation, search
(Created page with "Category:Ruby = Installation = * Install ruby 1.9.1 (it will actually install 1.9.3) <pre> $ sudo apt-get install ruby1.9.1 </pre> * To install header files for compiling e...")
Line 2: Line 2:
= Installation =
= Installation =
 +
== Ruby Installation ==
* Install ruby 1.9.1 (it will actually install 1.9.3)
* Install ruby 1.9.1 (it will actually install 1.9.3)
<pre>
<pre>
$ sudo apt-get install ruby1.9.1  
$ sudo apt-get install ruby1.9.1  
</pre>
</pre>
 +
 +
== Header Installation ==
* To install header files for compiling extension modules for the Rub,
* To install header files for compiling extension modules for the Rub,
<pre>
<pre>
$ sudo apt-get install ruby1.9.1-dev
$ sudo apt-get install ruby1.9.1-dev
 +
</pre>
 +
 +
== Bundler Installation ==
 +
<pre>
 +
$ sudo gem install bundler 
</pre>
</pre>

Revision as of 17:29, 28 June 2013


Contents

Installation

Ruby Installation

  • Install ruby 1.9.1 (it will actually install 1.9.3)
$ sudo apt-get install ruby1.9.1 

Header Installation

  • To install header files for compiling extension modules for the Rub,
$ sudo apt-get install ruby1.9.1-dev

Bundler Installation

$ sudo gem install bundler  
Personal tools