public
Description: JRuby, an implementation of Ruby on the JVM
Homepage: http://www.jruby.org
Clone URL: git://github.com/jruby/jruby.git
jruby /
name age message
file .classpath Sun Jul 26 03:14:03 -0700 2009 Remove some mentions of the jvyamlb jar-file [olabini]
directory .externalToolBuilders/ Thu May 24 15:00:02 -0700 2007 JRUBY-994: Remove jruby serialization feature ... [enebo]
file .gitignore Fri Sep 25 11:43:37 -0700 2009 Corrected the main JRuby website to be jruby.or... [vvs]
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... [Jan Arne Petersen]
file COPYING.LGPL Sat Oct 05 09:51:14 -0700 2002 - update license git-svn-id: http://svn.codeh... [Jan Arne Petersen]
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 Fri Sep 25 11:43:37 -0700 2009 Corrected the main JRuby website to be jruby.or... [vvs]
file Rakefile Tue Sep 29 14:29:15 -0700 2009 Add rake "installer" task for building windows ... [nicksieger]
directory bench/ Fri Sep 18 20:54:34 -0700 2009 Add hash aref to tests in bench [enebo]
directory bin/ Mon Sep 28 07:13:35 -0700 2009 JRUBY-3738: Helpful message if JAVA_HOME not de... [nicksieger]
file build-config.xml Loading commit data...
file build.xml
directory build_lib/ Tue Sep 29 18:30:36 -0700 2009 First landing of jruby-embed [enebo]
file default.build.properties Mon Apr 13 17:14:13 -0700 2009 Rework jruby-jars gem to be based on splitting ... [nicksieger]
directory docs/ Fri Mar 06 00:01:46 -0800 2009 Doc patch for JRUBY-3461: Minor code convention... [headius]
file findbugs.xml Mon Jun 08 23:54:53 -0700 2009 JRUBY-2292: Initial draft of Ivy and FindBugs i... [James Abley]
directory gem/ Wed Aug 26 19:07:51 -0700 2009 gems/Rakefile: Expand list of what gets put in ... [nicksieger]
directory install/
directory ivy/ Mon Jun 08 23:54:53 -0700 2009 JRUBY-2292: Initial draft of Ivy and FindBugs i... [James Abley]
file jruby.bnd.template Mon Aug 11 14:02:51 -0700 2008 JRUBY-2741: OSGify jruby.jar in the release jru... [enebo]
directory lib/ Wed Sep 30 06:42:03 -0700 2009 JRUBY-4022: 9 rubyspec failures for SecureRando... [vvs]
directory maven/
directory nbproject/ Wed Sep 23 14:05:56 -0700 2009 Add jgrapht dependency to nbproject for new com... [headius]
file netbeans-ant.xml Thu Aug 06 09:49:41 -0700 2009 Make debug action maintain sticky arguments in ... [enebo]
file pom.xml Wed Sep 30 12:07:31 -0700 2009 Update version info for 1.4.0RC1 [enebo]
file rubyspecs.revision Tue Sep 29 11:57:13 -0700 2009 JRUBY-4017: [1.8] Method#name and UnboundMethod... [vvs]
directory samples/ Sat Mar 14 00:52:32 -0700 2009 Add basic annotation support to compiler2. git... [headius]
directory spec/
directory src/
directory test/ Sun Sep 27 09:18:57 -0700 2009 JRUBY-3967: remove some duplicated tests that h... [enebo]
directory tool/ Sun Aug 30 12:38:06 -0700 2009 A little more intelligent Makefile.in Signed-o... [BanzaiMan]
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'.

If you checked out from the repository or downloaded the source distribution,
see the next section to build JRuby first.

== 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.org for more information.

== License

Read the COPYING file.