public
Description: The Duby Programming Language
Homepage: http://kenai.com/projects/duby
Clone URL: git://github.com/headius/duby.git
duby /
name age message
directory Duby Plugin/ Mon Oct 05 22:14:02 -0700 2009 Add the netbeans plugin [Ryan Brown]
file History.txt Sat Nov 07 05:32:31 -0800 2009 All bits needed to build a gem. [headius]
file Manifest.txt Sat Nov 07 09:00:24 -0800 2009 Add fractal benchmark to examples. [headius]
file README.txt Sat Nov 07 05:32:31 -0800 2009 All bits needed to build a gem. [headius]
file Rakefile Sat Nov 07 05:32:31 -0800 2009 All bits needed to build a gem. [headius]
directory bin/ Sat Nov 07 05:32:31 -0800 2009 All bits needed to build a gem. [headius]
file build.xml Thu Oct 08 22:33:41 -0700 2009 Don't copy jruby into duby.jar. [Ryan Brown]
directory examples/ Sat Nov 07 09:00:24 -0800 2009 Add fractal benchmark to examples. [headius]
directory javalib/ Fri Oct 02 14:50:19 -0700 2009 Switch to 1.9 parser [Ryan Brown]
directory lib/ Sun Nov 08 01:55:35 -0800 2009 Literal array support; only JVM compiler suppor... [headius]
directory nbproject/ Sat Jan 24 11:21:35 -0800 2009 Fixing src=lib in project view. [headius@cnutter.local]
directory src/ Thu Oct 01 16:01:09 -0700 2009 Switch to using jrubyparser instead of JRuby.pa... [Ryan Brown]
directory test/ Sun Nov 08 01:55:35 -0800 2009 Literal array support; only JVM compiler suppor... [headius]
README.txt
= duby

* http://kenai.com/projects/duby

== DESCRIPTION:

Duby is a customizable programming language featuring static types, local type inference and a heavily Ruby-inspired 
syntax. Duby currently includes a typer/compiler backend for the JVM which can output either JVM bytecode or Java source 
files.

== FEATURES/PROBLEMS:

* Ruby syntax
* Compiles to .class or .java
* Fast as Java

== SYNOPSIS:

duby <script.duby>
duby -e "inline script"
dubyc <script.duby>
dubyc -e "inline script" # produces dash_e.class
dubyc -java <script.duby>
dubyc -java -e "inline script" # produces dash_e.java

== REQUIREMENTS:

* JRuby 1.4RC2 or higher.
* BiteScript 0.0.4 or higher

== INSTALL:

* gem install duby