Charles Oliver Nutter
Charles Oliver Nutter
cppjieba_rb is a dependency of Discourse, which I am trying to get to run on JRuby. However, JRuby does not support CRuby extensions. There is a Java library (https://github.com/huaban/jieba-analysis) that...
Would you be opposed to including equivalent extension code for JRuby? The port should be pretty straightforward: I have done similar for other small extensions like Psych and the code...
These are minimal changes to support working on JRuby 9.2 and up, which are the currently-supported JRuby versions. I was unable to run the tests due to errors building (something...
Currently it does not appear that Drip's jar is published to Maven Central. This makes it difficult or impossible to work with the Drip classes directly from a Maven-based project....
JRuby appears to be able to use rb-readline just fine these days. ``` $ rake test /Users/headius/projects/jruby/bin/jruby -w -I"lib:test" -I"/Users/headius/projects/jruby/lib/ruby/gems/shared/gems/rake-12.2.1/lib" "/Users/headius/projects/jruby/lib/ruby/gems/shared/gems/rake-12.2.1/lib/rake/rake_test_loader.rb" "test/test_completion.rb" "test/test_filename_completion_proc.rb" "test/test_history.rb" "test/test_rbreadline.rb" "test/test_readline.rb" Run options: --seed 4979...
We need RedCloth to work on JRuby, since it is used by many applications. Support for JRuby was removed around April 2016 during work on CVE-2012-6684. What can we do...
The subspawn library is a better and cleaner implementation of Ruby's spawn (and friends) and we should try to move toward using it by default. A few things are needed...
This is a proof-of-concept for adding the definition location (from source where `attr`, `attr_reader`, `attr_accessor` or `attr_writer` was called) into all `attr`-style methods, to address the missing information reported in...
See #8208.
In #8146 we see a side effect of not properly setting up a native `#initialize` method as private: `DelegateClass` will attempt to also wrap `#initialize`, breaking the delegator's constructor path...