<zenspider>
headius: did you see any of my above questions?
_whitelogger has joined #jruby
shellac has joined #jruby
shellac has quit [Quit: Computer has gone to sleep.]
shellac has joined #jruby
drbobbeaty has joined #jruby
drbobbeaty has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
drbobbeaty has joined #jruby
rdubya has joined #jruby
drbobbeaty has quit [Ping timeout: 244 seconds]
drbobbeaty has joined #jruby
drbobbeaty has quit [Ping timeout: 268 seconds]
drbobbeaty has joined #jruby
drbobbeaty has quit [Ping timeout: 246 seconds]
drbobbeaty has joined #jruby
shellac has quit [Quit: Computer has gone to sleep.]
shellac has joined #jruby
shellac has quit [Client Quit]
drbobbeaty has quit [Read error: Connection reset by peer]
drbobbeaty has joined #jruby
shellac has joined #jruby
<headius>
zenspider: checking log
<headius>
zenspider: ok first problem: that's a Java 9+ feature...we use reflection a lot to crack open JDK classes, and it doesn't like that.
<headius>
officially we still recommend using Java 8 since it's best supported...9+ will work but you will get those warnings for a while
<headius>
we're working on reducing it each release
<headius>
zenspider: second problem: JRuby's normal launcher is a bash script
<headius>
I'm not sure what you mean by full path everything but if you mean shebangs then you can install jruby-launcher to get a real native executable that works there
<headius>
lopex: at least those look like they're mostly pretty easy to implement
<headius>
lopex: time to start 2.6 work pretty soon
<headius>
if you see anything you want to implement make a branch and go for it
<lopex>
headius: howdy
<lopex>
one moment
<headius>
yeah none of these look like more than a few lines of code
<headius>
we need to get enumerable and enumerator moved to ruby
drbobbeaty has quit [Ping timeout: 250 seconds]
codefinger has joined #jruby
<lopex>
headius: why is ENV impls so bifurcated in mri ?
<lopex>
it even has it's own to_h (with block even)
<lopex>
SQUARE >> HALF isnt escaping anywhere here right ?
subbu|lunch is now known as subbu
shellac has quit [Quit: Computer has gone to sleep.]
shellac has joined #jruby
shellac has quit [Quit: Computer has gone to sleep.]
shellac has joined #jruby
subbu is now known as subbu|away
mblum has joined #jruby
<mblum>
Hey quick question, if in java I have an interface called Driver that i'd normally instantiate an object like: Driver driver = new LocalDriver(). How can I replicate that in jruby?
shellac has quit [Quit: Computer has gone to sleep.]
<lopex>
just use LocalDriver.new
<mblum>
^ If anyone is curious, jruby was correctly assigning my type when I did driver = LocalDriver.new, i was misinterpreting the error I was getting. In java I call driver.find(Obj.class, different_obj). when I do this in Jruby regardless of if I do obj.class or obj::class it comes back with NameError: no method 'find' for arguments (org.jruby.RubyClas