Ruby-2.4.1

Introduction to Ruby

The Ruby package contains the Ruby development environment. This is useful for object-oriented scripting.

This package is known to build and work properly using an LFS-8.1 platform.

Package Information

  • Download (HTTP): http://cache.ruby-lang.org/pub/ruby/2.4/ruby-2.4.1.tar.xz

  • Download MD5 sum: 894467211c4ae1dbf8a41bb0d58bbc89

  • Download size: 9.5 MB

  • Estimated disk space required: 338 MB, with checks (add 247 MB for C API docs)

  • Estimated build time: 2.4 SBU, with checks (add 0.5 SBU for C API docs)

Ruby Dependencies

Optional

Berkeley DB-6.2.32, Doxygen-1.8.13, Graphviz-2.40.1, libffi-3.2.1, OpenSSL-1.1.0f, Tk-8.6.7, Valgrind-3.13.0, and YAML-0.1.7

User Notes: http://wiki.linuxfromscratch.org/blfs/wiki/ruby

Installation of Ruby

Install Ruby by running the following command:

./configure --prefix=/usr   \
            --enable-shared \
            --docdir=/usr/share/doc/ruby-2.4.1 &&
make

Optionally, build the CAPI documents by running the following commands:

make capi

To test the results, issue: make check.

Now, as the root user:

make install

Command Explanations

--enable-shared: This switch enables building of the libruby shared library.

--disable-install-doc: This switch disables building and installing rdoc indexes and C API documents.

--disable-install-rdoc: This switch disables building and installing rdoc indexes.

--disable-install-capi: This switch disables building and installing C API documents.

Contents

Installed Programs: erb, gem, irb, rake, rdoc, ri, and ruby
Installed Libraries: libruby.so and libruby-static.a
Installed Directories: /usr/include/ruby-2.4.0 /usr/lib/ruby, /usr/share/doc/ruby-2.4.1 and /usr/share/ri

Short Descriptions

erb

is Tiny eRuby. It interprets a Ruby code embedded text file.

gem

command for RubyGems - a sophisticated package manager for Ruby.

irb

is the interactive interface for Ruby.

rake

a make-like build utility for Ruby.

rdoc

generates Ruby documentation.

ri

displays documentation from a database on Ruby classes, modules, and methods.

ruby

is an interpreted scripting language for quick and easy object-oriented programming.

libruby.so

contains the API functions required by Ruby.

Last updated on 2017-08-20 20:24:54 -0700