cloby icon indicating copy to clipboard operation
cloby copied to clipboard

A Clojure Ref/STM plugin for JRuby

Results 3 cloby issues
Sort by recently updated
recently updated
newest added

I added support for Clojure Agents. p.s.: fixed the whitespace/tab issue ;-)

apparently, getVariable / setVariable sometimes get called with negative index ...... just ignoring these calls and returning null fixes the issue.

given the following code: ``` ruby require 'rubygems' require 'cloby' Ref = Java::clojure.lang.Ref class Foo < Clojure::Object attr_accessor :count def initialize(count = 1) @count = count end def to_s "[Foo...