public
Description: A Git mirror of http://svn.ruby-lang.org/repos/ruby.
Homepage:
Clone URL: git://github.com/rubyspec/matzruby.git
name age message
file .cvsignore Thu Sep 21 10:06:50 -0700 2006 * .cvsignore: ignore timestamp files and instal... [nobu]
file .document Sat Oct 09 20:35:51 -0700 2004 Support "require" as variable name in RDoc gi... [dave]
file COPYING Fri Jun 09 14:20:17 -0700 2006 * sprintf.c (rb_str_format): allow %c to print ... [matz]
file COPYING.ja Sat Jun 10 09:09:12 -0700 2006 * ext/bigdecimal/lib/bigdecimal/newton.rb (Newt... [matz]
file ChangeLog Loading commit data...
file GPL Wed Jul 11 12:25:52 -0700 2001 * It is confusing to put the GPL license terms ... [knu]
file LEGAL
file LGPL Wed Jul 11 12:25:52 -0700 2001 * It is confusing to put the GPL license terms ... [knu]
file Makefile.in
file README
file README.EXT
file README.EXT.ja
file README.ja
file ToDo Mon Apr 05 08:55:09 -0700 2004 * error.c (Init_Exception): remove Exception#to... [matz]
file array.c
file ascii.c
directory bcc32/
file bignum.c
directory bin/ Sun Oct 23 17:07:01 -0700 2005 * ext/tk/lib/tk/canvas.rb (TkCanvasItemConfig::... [matz]
file class.c
file common.mk
file compar.c
file config.guess Fri Jul 16 19:23:52 -0700 2004 * eval.c (THREAD_ALLOC): th->thread should be i... [matz]
file config.sub
file configure.in
directory cygwin/
file defines.h
file dir.c
directory djgpp/
file dln.c
file dln.h
file dmydln.c Wed Apr 20 07:25:34 -0700 2005 * Makefile.in, common.mk: miniruby depens on MI... [nobu]
file dmyext.c
directory doc/
file enum.c
file enumerator.c
file env.h
file error.c
file euc_jp.c
file eval.c
directory ext/
file file.c
file gc.c
file hash.c
file ia64.s Sun Jan 01 00:12:39 -0800 2006 This commit was manufactured by cvs2svn to crea... [(no author)]
file inits.c
file install-sh Thu Aug 12 22:45:20 -0700 1999 1.4.0 git-svn-id: http://svn.ruby-lang.org/re... [matz]
file instruby.rb
file intern.h
file io.c
file keywords
file lex.c
directory lib/
file main.c
file marshal.c
file math.c
file mdoc2man.rb Mon Jan 20 04:10:40 -0800 2003 * mdoc2man.rb: Properly put nested braces, pare... [knu]
directory misc/
file missing.h
directory missing/
file mkconfig.rb
file node.h
file numeric.c
file object.c
file oniguruma.h
file pack.c
file parse.y
file prec.c
file process.c
file random.c
file range.c
file re.c
file re.h
file regcomp.c
file regenc.c
file regenc.h
file regerror.c
file regex.h
file regexec.c
file regint.h
file regparse.c
file regparse.h
file ruby.1 Sat Mar 11 00:27:43 -0800 2006 * lib/rdoc/ri/ri_formatter.rb (RI::TextFormatte... [matz]
file ruby.c
file ruby.h
file rubyio.h
file rubysig.h
file rubytest.rb
file runruby.rb
directory sample/
file signal.c
file sjis.c
file sprintf.c
file st.c
file st.h
file string.c
file struct.c
directory test/
file time.c
file utf8.c
file util.c
file util.h
file variable.c
file version.c
file version.h
directory vms/
directory win32/
directory wince/
directory x68/ Fri Jan 16 04:13:05 -0800 1998 Initial revision git-svn-id: http://svn.ruby-... [matz]
README
* What's Ruby

Ruby is the interpreted scripting language for quick and
easy object-oriented programming.  It has many features to
process text files and to do system management tasks (as in
Perl).  It is simple, straight-forward, and extensible.


* Features of Ruby

  + Simple Syntax
  + *Normal* Object-Oriented features(ex. class, method calls)
  + *Advanced* Object-Oriented features(ex. Mix-in, Singleton-method)
  + Operator Overloading
  + Exception Handling
  + Iterators and Closures
  + Garbage Collection
  + Dynamic Loading of Object files(on some architecture)
  + Highly Portable(works on many UNIX machines, and on DOS,
    Windows, Mac, BeOS etc.)


* How to get Ruby

The Ruby distribution can be found on:

  ftp://ftp.ruby-lang.org/pub/ruby/

You can get it by anonymous CVS.  How to check out is:

  $ cvs -d :pserver:anonymous@cvs.ruby-lang.org:/src login
  (Logging in to anonymous@cvs.ruby-lang.org)
  CVS password: anonymous
  $ cvs -z4 -d :pserver:anonymous@cvs.ruby-lang.org:/src checkout ruby


* Ruby home-page

The URL of the Ruby home-page is:

   http://www.ruby-lang.org/


* Mailing list

There is a mailing list to talk about Ruby.
To subscribe this list, please send the following phrase

  subscribe YourFirstName YourFamilyName
e.g.
        subscribe Joseph Smith

in the mail body (not subject) to the address <ruby-talk-ctl@ruby-lang.org>.


* How to compile and install

This is what you need to do to compile and install Ruby:

  1. If ./configure does not exist or is older than configure.in,
     run autoconf to (re)generate configure.

  2. Run ./configure, which will generate config.h and Makefile.

  3. Edit defines.h if you need.  Usually this step will not be needed.

  4. Remove comment mark(#) before the module names from ext/Setup (or
     add module names if not present), if you want to link modules
     statically.

     If you don't want to compile non static extension modules
     (probably on architectures which does not allow dynamic loading),
     remove comment mark from the line "#option nodynamic" in
     ext/Setup.

  5. Run make.

  6. Optionally, run 'make test' to check whether the compiled Ruby
     interpreter works well.  If you see the message "test succeeded",
     your ruby works as it should (hopefully).

  7. Run 'make install'

     You may have to be a super user to install ruby.

If you fail to compile ruby, please send the detailed error report with
the error log and machine/OS type, to help others.


* Copying

See the file COPYING.


* The Author

Feel free to send comments and bug reports to the author.  Here is the 
author's latest mail address:

  matz@netlab.jp

-------------------------------------------------------
created at: Thu Aug  3 11:57:36 JST 1995
Local variables:
mode: indented-text
end: