The Ruby package contains the Ruby development environment. This is useful for object-oriented scripting.
Download (FTP): ftp://ftp.ruby-lang.org/pub/ruby/ruby-1.8.2.tar.gz
Download MD5 sum: 8ffc79d96f336b80f2690a17601dea9b
Download size: 3.5 MB
Estimated disk space required: 36.2 MB
Estimated build time: 0.62 SBU
Install Ruby by running the following commands:
./configure --prefix=/usr \
--enable-shared --enable-pthread &&
make
Now, as the root user:
make install &&
make install-doc
--enable-shared: This parameter builds the libruby shared library.
--enable-pthread: This parameter links the threading library into the Ruby build.
is an interpreted scripting language for quick and easy object-oriented programming.
is the interactive interface for Ruby.
is Tiny eRuby. It interprets a Ruby code embedded text file.
displays documentation from a database on Ruby classes, modules and methods.
contains the API functions required by Ruby.
Last updated on 2005-01-30 16:01:56 -0700