home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2007 September / PCWSEP07.iso / Software / Linux / Linux Mint 3.0 Light / LinuxMint-3.0-Light.iso / casper / filesystem.squashfs / usr / share / doc / ruby1.8 / README < prev    next >
Encoding:
Text File  |  2006-08-08  |  2.7 KB  |  107 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.  
  9. * Features of Ruby
  10.  
  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.)
  21.  
  22.  
  23. * How to get Ruby
  24.  
  25. The Ruby distribution can be found on:
  26.  
  27.   ftp://ftp.ruby-lang.org/pub/ruby/
  28.  
  29. You can get it by anonymous CVS.  How to check out is:
  30.  
  31.   $ cvs -d :pserver:anonymous@cvs.ruby-lang.org:/src login
  32.   (Logging in to anonymous@cvs.ruby-lang.org)
  33.   CVS password: anonymous
  34.   $ cvs -z4 -d :pserver:anonymous@cvs.ruby-lang.org:/src checkout ruby
  35.  
  36.  
  37. * Ruby home-page
  38.  
  39. The URL of the Ruby home-page is:
  40.  
  41.    http://www.ruby-lang.org/
  42.  
  43.  
  44. * Mailing list
  45.  
  46. There is a mailing list to talk about Ruby.
  47. To subscribe this list, please send the following phrase
  48.  
  49.     subscribe YourFirstName YourFamilyName
  50. e.g.
  51.         subscribe Joseph Smith
  52.  
  53. in the mail body (not subject) to the address <ruby-talk-ctl@ruby-lang.org>.
  54.  
  55.  
  56. * How to compile and install
  57.  
  58. This is what you need to do to compile and install Ruby:
  59.  
  60.   1. If ./configure does not exist or is older than configure.in,
  61.      run autoconf to (re)generate configure.
  62.  
  63.   2. Run ./configure, which will generate config.h and Makefile.
  64.  
  65.   3. Edit defines.h if you need.  Usually this step will not be needed.
  66.  
  67.   4. Remove comment mark(#) before the module names from ext/Setup (or
  68.      add module names if not present), if you want to link modules
  69.      statically.
  70.  
  71.      If you don't want to compile non static extension modules
  72.      (probably on architectures which does not allow dynamic loading),
  73.      remove comment mark from the line "#option nodynamic" in
  74.      ext/Setup.
  75.  
  76.   5. Run make.
  77.  
  78.   6. Optionally, run 'make test' to check whether the compiled Ruby
  79.      interpreter works well.  If you see the message "test succeeded",
  80.      your ruby works as it should (hopefully).
  81.  
  82.   7. Run 'make install'
  83.  
  84.      You may have to be a super user to install ruby.
  85.  
  86. If you fail to compile ruby, please send the detailed error report with
  87. the error log and machine/OS type, to help others.
  88.  
  89.  
  90. * Copying
  91.  
  92. See the file COPYING.
  93.  
  94.  
  95. * The Author
  96.  
  97. Feel free to send comments and bug reports to the author.  Here is the 
  98. author's latest mail address:
  99.  
  100.   matz@netlab.jp
  101.  
  102. -------------------------------------------------------
  103. created at: Thu Aug  3 11:57:36 JST 1995
  104. Local variables:
  105. mode: indented-text
  106. end:
  107.