From charlesreid1

(Created page with "= Installation = == Configuration == This one's really easy: <syntaxhighlight lang="bash"> #!/bin/sh ./configure --prefix=/path/to/ruby </syntaxhighlight> You'll probably wa...")
 
No edit summary
Line 1: Line 1:
= Installation =
Why the fuck anyone would ever even consider using Ruby is beyond me...
 
== Configuration ==
 
This one's really easy:
 
<syntaxhighlight lang="bash">
#!/bin/sh
 
./configure --prefix=/path/to/ruby
</syntaxhighlight>
 
You'll probably want to use Ruby gems - these are basically Ruby packages or extensions.  You can either use the Gem binary that comes with your Ruby, or alternatively you can install the most up-to-date version yourself by downloading it and installing it. To do that, download and unpack it, then do:
 
<syntaxhighlight lang="bash">
$ cd /path/to/rubygems
$ ruby setup.rb --help
$ ruby setup.rb
</syntaxhighlight>

Revision as of 04:57, 6 June 2013

Why the fuck anyone would ever even consider using Ruby is beyond me...