public
Description: JRuby from Codehaus
Homepage:
Clone URL: git://github.com/bobmcwhirter/jruby.git
jruby /
name age message
file .classpath Fri Aug 15 20:36:40 -0700 2008 Update jvYAML for eclipse+netbeans Finish Speci... [enebo]
directory .externalToolBuilders/ Thu May 24 15:00:02 -0700 2007 JRUBY-994: Remove jruby serialization feature ... [enebo]
file .gitignore Tue Jul 01 06:39:17 -0700 2008 Add Stephen Bannasch's tweaks to improve the em... [headius]
file .project Thu May 24 15:00:02 -0700 2007 JRUBY-994: Remove jruby serialization feature ... [enebo]
directory .settings/ Sun Aug 05 15:54:34 -0700 2007 Updating Eclipse settings for 1.5. May also wan... [bdortch]
file COPYING Sat Jun 21 15:31:40 -0700 2008 minor wording update git-svn-id: http://svn.co... [vvs]
file COPYING.CPL Sat Jan 22 11:51:51 -0800 2005 Licensing fixes git-svn-id: http://svn.codeha... [enebo]
file COPYING.GPL Sat Oct 05 09:51:14 -0700 2002 - update license git-svn-id: http://svn.codeh... [jpetersen]
file COPYING.LGPL Sat Oct 05 09:51:14 -0700 2002 - update license git-svn-id: http://svn.codeh... [jpetersen]
file LEGAL Thu Dec 06 14:52:14 -0800 2007 Adding back LEGAL (for Ola) git-svn-id: http:... [nicksieger]
file LICENSE.RUBY Sat Mar 19 13:58:25 -0800 2005 Add license text for ruby licensed modules gi... [enebo]
file README Sat Jun 21 13:38:23 -0700 2008 Simple wording adjustment to README. git-svn-... [(no author)]
file Rakefile Mon Jul 14 15:22:40 -0700 2008 Add tracing tests from Martin Krauskopf from JR... [headius]
directory bench/ Mon Sep 08 01:11:41 -0700 2008 Add singleton dispatch benchmark. git-svn-id:... [headius]
directory bin/ Mon Aug 04 14:30:05 -0700 2008 JRUBY-2894: When spec runs fail, Ant is not ter... [vvs]
file build-config.xml Thu Aug 21 13:28:53 -0700 2008 Bump version numbers to 1.1.4 for upcoming rele... [enebo]
file build.xml Mon Sep 08 13:40:28 -0700 2008 Update build.xml so jcodings gets jarjarred. g... [lopex]
directory build_lib/ Mon Sep 08 13:28:13 -0700 2008 Sync trunk with split joni/jcodings, also make ... [lopex]
file default.build.properties Thu Jul 17 07:15:42 -0700 2008 Increased the memory needed for unit tests (to ... [vvs]
directory docs/ Tue May 27 09:45:46 -0700 2008 Updating README a bit and deleting all the out-... [headius]
directory gem/ Sun Aug 17 08:01:21 -0700 2008 Add hoe skeleton for JRuby gem. Might move this... [headius]
file jruby.bnd.template Mon Aug 11 14:02:51 -0700 2008 JRUBY-2741: OSGify jruby.jar in the release jru... [enebo]
directory lib/ Sat Sep 06 13:07:28 -0700 2008 Remove compiler (now JVMScript) from JRuby sour... [headius]
directory maven/ Thu Aug 28 09:34:26 -0700 2008 Simplify maven files and move jar copy to packa... [nicksieger]
directory nbproject/ Sun Sep 07 01:38:05 -0700 2008 Initial support for invokedynamic-based dispatc... [headius]
file netbeans-ant.xml Fri Jun 20 10:24:20 -0700 2008 JRUBY-2674: ant -projecthelp output is incorrec... [vvs]
file pom.xml Thu Aug 28 09:34:26 -0700 2008 Simplify maven files and move jar copy to packa... [nicksieger]
file rubyspecs.revision Sun Jul 20 04:53:09 -0700 2008 New mspec/rubyspecs. New excludes: JRUBY-2543, ... [vvs]
directory samples/ Sat Sep 06 00:26:17 -0700 2008 Removing Duby from JRuby repository. git-svn-... [headius]
directory spec/ Wed Sep 03 13:58:17 -0700 2008 Make JavaClass.for_name return primitive classe... [headius]
directory src/ Tue Sep 09 02:25:41 -0700 2008 Add experimental switch support in compiler for... [headius]
directory test/ Sat Sep 06 13:07:48 -0700 2008 Re-remove duby and bytecode dsl tests. git-sv... [headius]
directory tool/ Mon Jul 07 13:30:51 -0700 2008 JRUBY-2762: Use `git rev-list` instead of `git-... [vvs]
README
JRuby -  A Java implementation of the Ruby language

Authors: Stefan Matthias Aust, Anders Bengtsson, Geert Bevin,
 Piergiuliano Bossi, Johannes Brodwall, Rocky Burt, Paul Butcher,
 Benoit Cerrina, Wyss Clemens, David Corbin, Thomas E Enebo, Robert Feldt,
 Russ Freeman, Chad Fowler, Joey Gibson, Kiel Hodges, Xandy Johnson,
 Kelvin Liu, Alan Moore, Akinori Musha, Charles Nutter, Takashi Okamoto
 Jan Arne Petersen, Tobias Reif, David Saff, Ed Sinjiashvili, Daiki Ueno
 Matthias Veit, Jason Voegele, Sergey Yevtushenko, Robert Yokota, 
 Ola Bini, Nick Sieger, Vladimir Sizikov, and many gracious contributions
 from the community.

Project Contact: Thomas E Enebo <enebo@acm.org>

JRuby also uses code generously shared by the creator of the Ruby language, 
Yukihiro Matsumoto <matz@netlab.co.jp>.

== About

JRuby is the effort to recreate the Ruby (http://www.ruby-lang.org) interpreter
in Java.

The Java version is tightly integrated with Java to allow both to script
any Java class and to embed the interpreter into any Java application. 
See the 'docs' directory for more information.

== Run

    bin/jruby rubyfile.rb

interprets the file 'rubyfile.rb'.

== Compiling from source

You will need:

* JDK 1.5 or greater
* Apache Ant (http://jakarta.apache.org/ant/) 1.7 or greater.

To compile, just type:

    ant

This will create a jruby.jar file in the projects 'lib' directory.

== Testing

In order to run the unit tests, copy the build_lib/junit.jar file to either
$ANT_HOME/lib/junit.jar or ~/.ant/lib/junit.jar.

See 'docs/README.test' for more information.

== More Information

Visit http://jruby.codehaus.org for more information.

== License

Read the COPYING file.