source: general/prog/ruby.xml@ 16f3afb3

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 6.1 6.2 6.2.0 6.2.0-rc1 6.2.0-rc2 6.3 6.3-rc1 6.3-rc2 6.3-rc3 7.10 7.4 7.5 7.6 7.6-blfs 7.6-systemd 7.7 7.8 7.9 8.0 8.1 8.2 8.3 8.4 9.0 9.1 basic bdubbs/svn elogind gnome kde5-13430 kde5-14269 kde5-14686 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts krejzi/svn lazarus lxqt nosym perl-modules plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition systemd-11177 systemd-13485 trunk upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since 16f3afb3 was 16f3afb3, checked in by Manuel Canales Esparcia <manuel@…>, 19 years ago

Tagged ruby.xml

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@3990 af4574ff-66df-0310-9fd7-8a98e5e911e0

  • Property mode set to 100644
File size: 5.4 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN"
3 "http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6
7 <!ENTITY ruby-download-http " ">
8 <!ENTITY ruby-download-ftp "ftp://ftp.ruby-lang.org/pub/ruby/ruby-&ruby-version;.tar.gz">
9 <!ENTITY ruby-md5sum "8ffc79d96f336b80f2690a17601dea9b">
10 <!ENTITY ruby-size "3.5 MB">
11 <!ENTITY ruby-buildsize "55.2 MB">
12 <!ENTITY ruby-time "0.93 SBU">
13]>
14
15<sect1 id="ruby" xreflabel="Ruby-&ruby-version;">
16 <?dbhtml filename="ruby.html"?>
17
18 <sect1info>
19 <othername>$LastChangedBy$</othername>
20 <date>$Date$</date>
21 </sect1info>
22
23 <title>Ruby-&ruby-version;</title>
24
25 <indexterm zone="ruby">
26 <primary sortas="a-Ruby">Ruby</primary>
27 </indexterm>
28
29 <sect2 role="package">
30 <title>Introduction to Ruby</title>
31
32 <para>The <application>Ruby</application> package contains the
33 <application>Ruby</application> development environment. This
34 is useful for object-oriented scripting.</para>
35
36 <bridgehead renderas="sect3">Package Information</bridgehead>
37 <itemizedlist spacing="compact">
38 <listitem>
39 <para>Download (HTTP): <ulink url="&ruby-download-http;"/></para>
40 </listitem>
41 <listitem>
42 <para>Download (FTP): <ulink url="&ruby-download-ftp;"/></para>
43 </listitem>
44 <listitem>
45 <para>Download MD5 sum: &ruby-md5sum;</para>
46 </listitem>
47 <listitem>
48 <para>Download size: &ruby-size;</para>
49 </listitem>
50 <listitem>
51 <para>Estimated disk space required: &ruby-buildsize;</para>
52 </listitem>
53 <listitem>
54 <para>Estimated build time: &ruby-time;</para>
55 </listitem>
56 </itemizedlist>
57
58 <bridgehead renderas="sect3">Ruby Dependencies</bridgehead>
59
60 <bridgehead renderas="sect4">Optional</bridgehead>
61 <para><xref linkend="openssl"/>,
62 <xref linkend="tk"/>,
63 <xref linkend="db"/>,
64 <xref linkend="gdbm"/></para>
65
66 </sect2>
67
68 <sect2 role="installation">
69 <title>Installation of Ruby</title>
70
71 <para>Install <application>Ruby</application> by running the following
72 commands:</para>
73
74<screen><userinput>./configure --prefix=/usr --enable-shared \
75--enable-pthread --enable-install-doc &amp;&amp;
76make</userinput></screen>
77
78 <para>Now, as the <systemitem class="username">root</systemitem> user:</para>
79
80<screen role="root"><userinput>make install</userinput></screen>
81
82 </sect2>
83
84 <sect2 role="commands">
85 <title>Command Explanations</title>
86
87 <para><parameter>--enable-shared</parameter>: This parameter builds the
88 <filename class='libraryfile'>libruby</filename> shared library.</para>
89
90 <para><parameter>--enable-pthread</parameter>: This parameter links the
91 threading library into the <application>Ruby</application> build.</para>
92
93 </sect2>
94
95 <sect2 role="content">
96 <title>Contents</title>
97
98 <segmentedlist>
99 <segtitle>Installed Programs</segtitle>
100 <segtitle>Installed Libraries</segtitle>
101 <segtitle>Installed Directories</segtitle>
102
103 <seglistitem>
104 <seg>ruby, irb, erb, rdoc, ri, and testrb</seg>
105 <seg>libruby.so and numerous modules located in the
106 <filename class='directory'>/usr/lib/ruby</filename> hierarchy.</seg>
107 <seg>/usr/lib/ruby and /usr/share/ri</seg>
108 </seglistitem>
109 </segmentedlist>
110
111 <variablelist>
112 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
113 <?dbfo list-presentation="list"?>
114 <?dbhtml list-presentation="table"?>
115
116 <varlistentry id="ruby-prog">
117 <term><command>ruby</command></term>
118 <listitem>
119 <para>is an interpreted scripting language for quick
120 and easy object-oriented programming.</para>
121 <indexterm zone="ruby ruby-prog">
122 <primary sortas="b-ruby">ruby</primary>
123 </indexterm>
124 </listitem>
125 </varlistentry>
126
127 <varlistentry id="irb">
128 <term><command>irb</command></term>
129 <listitem>
130 <para>is the interactive interface for
131 <application>Ruby</application>.</para>
132 <indexterm zone="ruby irb">
133 <primary sortas="b-irb">irb</primary>
134 </indexterm>
135 </listitem>
136 </varlistentry>
137
138 <varlistentry id="erb">
139 <term><command>erb</command></term>
140 <listitem>
141 <para>is Tiny eRuby. It interprets a
142 <application>Ruby</application> code embedded text file.</para>
143 <indexterm zone="ruby erb">
144 <primary sortas="b-erb">erb</primary>
145 </indexterm>
146 </listitem>
147 </varlistentry>
148
149 <varlistentry id="ri">
150 <term><command>ri</command></term>
151 <listitem>
152 <para>displays documentation from a database on
153 <application>Ruby</application> classes, modules and methods.</para>
154 <indexterm zone="ruby ri">
155 <primary sortas="b-ri">ri</primary>
156 </indexterm>
157 </listitem>
158 </varlistentry>
159
160 <varlistentry id="libruby">
161 <term><filename role="library">libruby.so</filename></term>
162 <listitem>
163 <para>contains the <acronym>API</acronym> functions required
164 by <application>Ruby</application>.</para>
165 <indexterm zone="ruby libruby">
166 <primary sortas="c-libruby">libruby.so</primary>
167 </indexterm>
168 </listitem>
169 </varlistentry>
170
171 </variablelist>
172
173 </sect2>
174
175</sect1>
176
Note: See TracBrowser for help on using the repository browser.