* io.c (rb_open_file): encoding in mode string was ignored if perm is
[ruby-svn.git] / README
blobb898003937511ccda32c1b5f7fb6f6b3dcd95cbb
1 * What's Ruby
3 Ruby is the interpreted scripting language for quick and
4 easy object-oriented programming.  It has many features to
5 process text files and to do system management tasks (as in
6 Perl).  It is simple, straight-forward, and extensible.
9 * Features of Ruby
11   + Simple Syntax
12   + *Normal* Object-Oriented features(ex. class, method calls)
13   + *Advanced* Object-Oriented features(ex. Mix-in, Singleton-method)
14   + Operator Overloading
15   + Exception Handling
16   + Iterators and Closures
17   + Garbage Collection
18   + Dynamic Loading of Object files(on some architecture)
19   + Highly Portable(works on many UNIX machines, and on DOS,
20     Windows, Mac, BeOS etc.)
23 * How to get Ruby
25 The Ruby distribution files can be found in the following FTP site:
27   ftp://ftp.ruby-lang.org/pub/ruby/
29 The trunk of the Ruby source tree can be checked out with the
30 following command:
32   $ svn co http://svn.ruby-lang.org/repos/ruby/trunk/ ruby
34 There are some other branches under development.  Try the following
35 command and see the list of branches:
37   $ svn ls http://svn.ruby-lang.org/repos/ruby/branches/
40 * Ruby home-page
42 The URL of the Ruby home-page is:
44    http://www.ruby-lang.org/
47 * Mailing list
49 There is a mailing list to talk about Ruby.
50 To subscribe this list, please send the following phrase
52         subscribe YourFirstName YourFamilyName
53 e.g.
54         subscribe Joseph Smith
56 in the mail body (not subject) to the address <ruby-talk-ctl@ruby-lang.org>.
59 * How to compile and install
61 This is what you need to do to compile and install Ruby:
63   1. If ./configure does not exist or is older than configure.in,
64      run autoconf to (re)generate configure.
66   2. Run ./configure, which will generate config.h and Makefile.
68      Some C compiler flags may be added by default depending on your
69      environment.  Specify optflags=.. and warnflags=.. as necessary
70      to override them.
72   3. Edit defines.h if you need.  Usually this step will not be needed.
74   4. Remove comment mark(#) before the module names from ext/Setup (or
75      add module names if not present), if you want to link modules
76      statically.
78      If you don't want to compile non static extension modules
79      (probably on architectures which does not allow dynamic loading),
80      remove comment mark from the line "#option nodynamic" in
81      ext/Setup.
83   5. Run make.
85   6. Optionally, run 'make test' to check whether the compiled Ruby
86      interpreter works well.  If you see the message "test succeeded",
87      your ruby works as it should (hopefully).
89   7. Run 'make install'
91      You may have to be a super user to install ruby.
93 If you fail to compile ruby, please send the detailed error report with
94 the error log and machine/OS type, to help others.
97 * Copying
99 See the file COPYING.
102 * The Author
104 Feel free to send comments and bug reports to the author.  Here is the 
105 author's latest mail address:
107   matz@netlab.jp
109 -------------------------------------------------------
110 created at: Thu Aug  3 11:57:36 JST 1995
111 Local variables:
112 mode: indented-text
113 end: