Hi,

In message "[ruby-talk:9262] Rubicon now available via CVS"
    on 01/01/14, Dave Thomas <Dave / PragmaticProgrammer.com> writes:

|I'm getting patches from folks for new tests for Rubicon just about
|every day (many thanks!), so rather than generate release after
|release, I've made its CVS repository publicly accessible.
|
|You can get the latest version using:
|
| % cvs -d :pserver:anonymous / pragprog.com:/usr/local/repository login
| CVS password:  guest
|
| % cvs -d :pserver:anonymous / pragprog.com:/usr/local/repository co rubicon

Great.  By the way. our CVS at cvs.ruby-lang.org is finally
available. (Thanks knu!)  Do you want to move repository there?

|Right now it fails on two tests on 1.6.2 (sort! on an array of length
|1, and an arity test). I'm not too sure what the official word on what 
|the correct interpreter behavior in these cases should be, so I've
|left the failures in as a reminder to ask...

I think

  proc{}.arity          # => -1
  proc{||}.arity        # => 0

is the right behavior.  About `sort!', I still haven't decided yet.

							matz.