home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / rbemx144.zip / ruby-1.4.4 / README < prev    next >
Text File  |  1999-12-11  |  5KB  |  152 lines

  1. * What's Ruby
  2.  
  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.
  7.  
  8. * Features of Ruby
  9.  
  10.   + Simple Syntax
  11.   + *Normal* Object-Oriented features(ex. class, method calls)
  12.   + *Advanced* Object-Oriented features(ex. Mix-in, Singleton-method)
  13.   + Operator Overloading
  14.   + Exception Handling
  15.   + Iterators and Closures
  16.   + Garbage Collection
  17.   + Dynamic Loading of Object files(on some architecture)
  18.   + Highly Portable(works on many UNIX machines, and on DOS,
  19.     Windows, Mac, BeOS etc.)
  20.  
  21. * How to get Ruby
  22.  
  23. The Ruby distribution can be found on:
  24.  
  25.   ftp://ftp.netlab.co.jp/pub/lang/ruby/
  26.  
  27. You can get it by anonymous CVS.  How to check out is:
  28.  
  29.   $ cvs -d :pserver:anonymous@cvs.netlab.co.jp:/home/cvs login
  30.   (Logging in to anonymous@cvs.netlab.co.jp)
  31.   CVS password: guest
  32.   $ cvs -d :pserver:anonymous@cvs.netlab.co.jp:/home/cvs checkout ruby
  33.  
  34. * Mailing list
  35.  
  36. There is a mailing list to talk about Ruby.
  37. To subscribe this list, please send the following phrase
  38.  
  39.     subscribe YourFirstName YourFamilyName
  40. e.g.
  41.         subscribe Joseph Smith
  42.  
  43. in the mail body (not subject) to the address <ruby-talk-ctl@netlab.co.jp>.
  44.  
  45. * How to compile and install
  46.  
  47. This is what you need to do to compile and install Ruby:
  48.  
  49.   1. Run ./configure, which will generate config.h and Makefile.
  50.  
  51.   2. Edit defines.h if you need.  Probably this step will not need.
  52.  
  53.   3. Remove comment mark(#) before the module names from ext/Setup (or
  54.      add module names if not present), if you want to link modules
  55.      statically.
  56.  
  57.      If you don't want to compile non static extension modules
  58.      (probably on architectures which does not allow dynamic loading),
  59.      remove comment mark from the line "#option nodynamic" in
  60.      ext/Setup.
  61.  
  62.   4. Run make.
  63.  
  64.   5. Optionally, run 'make test' to check whether the compiled Ruby
  65.      interpreter works well.  If you see the message "test succeeded",
  66.      your ruby works as it should (hopefully).
  67.  
  68.   6. Run 'make install'
  69.  
  70.      You may have to be a super user to install ruby.
  71.  
  72. If you fail to compile ruby, please send the detailed error report with
  73. the error log and machine/OS type, to help others.
  74.  
  75. * Copying
  76.  
  77. Ruby is copyrighted free software by Yukihiro Matsumoto <matz@netlab.co.jp>.
  78. You can redistribute it and/or modify it under either the terms of the GPL
  79. (see COPYING file), or the conditions below:
  80.  
  81.   1. You may make and give away verbatim copies of the source form of the
  82.      software without restriction, provided that you duplicate all of the
  83.      original copyright notices and associated disclaimers.
  84.  
  85.   2. You may modify your copy of the software in any way, provided that
  86.      you do at least ONE of the following:
  87.  
  88.        a) place your modifications in the Public Domain or otherwise
  89.           make them Freely Available, such as by posting said
  90.       modifications to Usenet or an equivalent medium, or by allowing
  91.       the author to include your modifications in the software.
  92.  
  93.        b) use the modified software only within your corporation or
  94.           organization.
  95.  
  96.        c) rename any non-standard executables so the names do not conflict
  97.       with standard executables, which must also be provided.
  98.  
  99.        d) make other distribution arrangements with the author.
  100.  
  101.   3. You may distribute the software in object code or executable
  102.      form, provided that you do at least ONE of the following:
  103.  
  104.        a) distribute the executables and library files of the software,
  105.       together with instructions (in the manual page or equivalent)
  106.       on where to get the original distribution.
  107.  
  108.        b) accompany the distribution with the machine-readable source of
  109.       the software.
  110.  
  111.        c) give non-standard executables non-standard names, with
  112.           instructions on where to get the original software distribution.
  113.  
  114.        d) make other distribution arrangements with the author.
  115.  
  116.   4. You may modify and include the part of the software into any other
  117.      software (possibly commercial).  But some files in the distribution
  118.      are not written by the author, so that they are not under this terms.
  119.      They are gc.c(partly), utils.c(partly), regex.[ch], st.[ch] and some
  120.      files under the ./missing directory.  See each file for the copying
  121.      condition.
  122.  
  123.   5. The scripts and library files supplied as input to or produced as 
  124.      output from the software do not automatically fall under the
  125.      copyright of the software, but belong to whomever generated them, 
  126.      and may be sold commercially, and may be aggregated with this
  127.      software.
  128.  
  129.   6. THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR
  130.      IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
  131.      WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR
  132.      PURPOSE.
  133.  
  134. * Ruby home-page
  135.  
  136. The URL of the Ruby home-page is:
  137.  
  138.    http://www.ruby-lang.org/
  139.  
  140. * The Author
  141.  
  142. Feel free to send comments and bug reports to the author.  Here is the 
  143. author's latest mail address:
  144.  
  145.   matz@netlab.co.jp
  146.  
  147. -------------------------------------------------------
  148. created at: Thu Aug  3 11:57:36 JST 1995
  149. Local variables:
  150. mode: indented-text
  151. end:
  152.