camlow325 has joined #jruby
camlow32_ has joined #jruby
camlow32_ has quit [Remote host closed the connection]
camlow325 has quit [Read error: Connection reset by peer]
camlow325 has joined #jruby
camlow325 has quit [Client Quit]
donV has quit [Quit: donV]
Puffball has quit [Remote host closed the connection]
brauliobo_ has quit [Ping timeout: 252 seconds]
enebo has joined #jruby
pawnbox has joined #jruby
pawnbox has quit [Ping timeout: 276 seconds]
enebo has quit [Quit: enebo]
Aethenelle has quit [Quit: Aethenelle]
Aethenelle has joined #jruby
e_dub has joined #jruby
<headius> donV: gem path gets initialized too early
<headius> because did_you_mean gem boots as a normal gem during boot
Puffball has joined #jruby
yfeldblum has quit [Remote host closed the connection]
yfeldblum has joined #jruby
fedruantine has quit [Max SendQ exceeded]
fedruantine has joined #jruby
tcrawley-away is now known as tcrawley
Aethenelle has quit [Ping timeout: 276 seconds]
tcrawley is now known as tcrawley-away
pawnbox has joined #jruby
pawnbox has quit [Ping timeout: 246 seconds]
pawnbox has joined #jruby
nirvdrum has quit [Ping timeout: 246 seconds]
yfeldblum has quit [Remote host closed the connection]
skade has joined #jruby
skade has quit [Quit: Computer has gone to sleep.]
yfeldblum has joined #jruby
yfeldblu_ has joined #jruby
yfeldblum has quit [Ping timeout: 246 seconds]
bb010g has joined #jruby
e_dub has quit [Read error: Connection reset by peer]
e_dub has joined #jruby
thedarkone2 has quit [Quit: thedarkone2]
fedruantine has quit [Max SendQ exceeded]
e_dub has quit [Ping timeout: 260 seconds]
yfeldblu_ has quit [Ping timeout: 250 seconds]
fedruantine has joined #jruby
shellac has joined #jruby
yfeldblum has joined #jruby
bb010g has quit [Quit: Connection closed for inactivity]
shellac has quit [Quit: Computer has gone to sleep.]
CaptainHeavy has joined #jruby
tlarevo has joined #jruby
skade has joined #jruby
tlarevo has quit [Read error: Connection reset by peer]
skade has quit [Ping timeout: 276 seconds]
tlarevo has joined #jruby
tlarevo has quit [Client Quit]
Specialist has joined #jruby
donV has joined #jruby
donValentin has joined #jruby
donV has quit [Ping timeout: 276 seconds]
yfeldblum has quit [Ping timeout: 250 seconds]
pawnbox has quit [Remote host closed the connection]
pawnbox has joined #jruby
Specialist has quit [Ping timeout: 276 seconds]
yfeldblum has joined #jruby
<GitHub172> [jruby] eregon pushed 2 new commits to master: https://git.io/vw1rb
<GitHub172> jruby/master fcc6642 Benoit Daloze: [Truffle] Use ArrayStrategy in Array#zip....
<GitHub172> jruby/master 2972e42 Benoit Daloze: [Truffle] Rename the fallback ArrayStrategy to FallbackArrayStrategy for clarity.
<GitHub148> [jruby] eregon pushed 2 new commits to master: https://git.io/vw1oJ
<GitHub148> jruby/master 90f598d Benoit Daloze: Squashed 'spec/mspec/' changes from 7a19a59..f509c1a...
<GitHub148> jruby/master 5a13973 Benoit Daloze: Merge ruby/mspec commit '90f598d00ce74d31ba40af6a7c3d7f9a9a08596f'
TheWhip has quit [Ping timeout: 246 seconds]
donValentin has quit [Quit: donValentin]
<CaptainHeavy> Hi everyone. I'm trying to use java_send to access a private java function from ruby but its saying the method doesn't exist. Do I have to specify a return type as well as input parameterS?
travis-ci has joined #jruby
<travis-ci> kares/warbler (1.x-dev:8d49451 by kares): The build has errored. (https://travis-ci.org/kares/warbler/builds/126858291)
travis-ci has left #jruby [#jruby]
<GitHub44> [jruby] eregon pushed 5 new commits to master: https://git.io/vw1K0
<GitHub44> jruby/master 2a9d1e4 Benoit Daloze: [Truffle] Update factorypath for Eclipse.
<GitHub44> jruby/master 8e6b3d2 Benoit Daloze: [Truffle] Update Eclipse launcher.
<GitHub44> jruby/master b107518 Benoit Daloze: [Truffle] Make the TopLevelRaiseHandler also wrap DATA handling.
<travis-ci> jruby/jruby (master:2972e42 by Benoit Daloze): The build is still failing. (https://travis-ci.org/jruby/jruby/builds/126855673)
shellac has joined #jruby
travis-ci has joined #jruby
<travis-ci> kares/warbler (1.x-dev:ae50e25 by kares): The build failed. (https://travis-ci.org/kares/warbler/builds/126863652)
travis-ci has left #jruby [#jruby]
brauliobo_ has joined #jruby
yfeldblum has quit [Ping timeout: 250 seconds]
<travis-ci> jruby/jruby (master:5a13973 by Benoit Daloze): The build is still failing. (https://travis-ci.org/jruby/jruby/builds/126856414)
shellac has quit [Quit: Computer has gone to sleep.]
travis-ci has joined #jruby
<travis-ci> jruby/warbler (1.x-dev:6d0e674 by kares): The build has errored. (https://travis-ci.org/jruby/warbler/builds/126857839)
travis-ci has left #jruby [#jruby]
<kares> CaptainHeavy: no
<CaptainHeavy> kares: Funnily enough, I'm doing this because of your suggestion last time I was here!
<kares> does a normal send not work? do u need java_send due an overload?
<CaptainHeavy> kares: Ah, I didn't realise there were two methods
<kares> CaptainHeavy: my suggestion ... which one :) ?
<kares> hello there than and welcome back :)
<kares> send should work in general ... recall suggesting send - not sure I mentioned java_send explicitly
<CaptainHeavy> kares: I asked if there was a more elegant way to get access to private Java instance methods other than using "instance.java_class.declared_method()" and you suggested using "send"
<CaptainHeavy> Apologies, I didn't realise there were two methods! I take it "java_send" is used when you're looking to get a method that's overloaded?
<kares> CaptainHeavy: yes a "normal" Ruby send should work for private Java methods
<kares> unless of course you need to deal with overloads ...
<CaptainHeavy> kares: Just trying it out now...
<CaptainHeavy> kares: Still not finding the method, very strange
travis-ci has joined #jruby
<travis-ci> kares/warbler (1.x-dev:d26be13 by kares): The build was fixed. (https://travis-ci.org/kares/warbler/builds/126865765)
travis-ci has left #jruby [#jruby]
<kares> CaptainHeavy: hmm - you might be right ... my bad, did not realize it probably only works for protected/package accessible methods
<kares> guess I didn't need to call a private Java method so far
<CaptainHeavy> kares: no problem! I've got a working solution anyway :)
<kares> so you might need to resort to reflection in the end
<kares> altough it would probably make sense for at least java_send to resolve all declared methods if possible
<CaptainHeavy> kares: Yes, that's exactly what I'm doing:
cremes_ has joined #jruby
<CaptainHeavy> method = Chrest.java_class.declared_method(:getInitialFixation, Java::JavaClass.for_name("int"))
<CaptainHeavy> method.accessible = true
<CaptainHeavy> result = method.invoke(model, time_function_invoked.to_java(:int))
<CaptainHeavy> Using java_send would be one less caveat to remember!
<kares> Java::int should work as well instead of having to JavaClass.for_name
<CaptainHeavy> cool :)
<CaptainHeavy> thank you
<kares> CaptainHeavy: feel free to open a PR so that its considered
hoodow_ has joined #jruby
hoodow_ has quit [Changing host]
hoodow_ has joined #jruby
Antiarc_ has joined #jruby
travis-ci has joined #jruby
<travis-ci> kares/warbler (1.x-dev:1a31925 by kares): The build is still failing. (https://travis-ci.org/kares/warbler/builds/126866098)
travis-ci has left #jruby [#jruby]
Antiarc has quit [*.net *.split]
hoodow has quit [*.net *.split]
jeremyevans has quit [*.net *.split]
cremes has quit [*.net *.split]
cremes_ is now known as cremes
pawnbox has quit [Remote host closed the connection]
brauliobo_ has quit [Ping timeout: 244 seconds]
brauliobo_ has joined #jruby
<travis-ci> jruby/jruby (master:35af9f8 by Benoit Daloze): The build is still failing. (https://travis-ci.org/jruby/jruby/builds/126861179)
travis-ci has joined #jruby
<travis-ci> jruby/warbler (1.x-dev:1a31925 by kares): The build failed. (https://travis-ci.org/jruby/warbler/builds/126867144)
travis-ci has left #jruby [#jruby]
brauliobo_ has quit [Ping timeout: 260 seconds]
robbyoconnor has joined #jruby
pawnbox has joined #jruby
pawnbox has quit [Ping timeout: 250 seconds]
brauliobo_ has joined #jruby
shellac has joined #jruby
donV has joined #jruby
shellac has quit [Quit: Computer has gone to sleep.]
fedruantine has quit [Max SendQ exceeded]
brauliobo_ has quit [Ping timeout: 244 seconds]
jimbaker has quit [Quit: Coyote finally caught me]
travis-ci has joined #jruby
<travis-ci> jruby/warbler (1.x-dev:afacd61 by kares): The build is still failing. (https://travis-ci.org/jruby/warbler/builds/126878536)
travis-ci has left #jruby [#jruby]
jeremyevans has joined #jruby
fedruantine has joined #jruby
bbrowning_away has quit [Quit: Leaving]
travis-ci has joined #jruby
<travis-ci> jruby/warbler (1.x-dev:afacd61 by kares): The build is still failing. (https://travis-ci.org/jruby/warbler/builds/126878536)
travis-ci has left #jruby [#jruby]
pawnbox has joined #jruby
pawnbox has quit [Ping timeout: 250 seconds]
jimbaker has joined #jruby
travis-ci has joined #jruby
<travis-ci> kares/warbler (1.x-dev:74aafba by kares): The build was fixed. (https://travis-ci.org/kares/warbler/builds/126892223)
travis-ci has left #jruby [#jruby]
fedruantine has quit [Max SendQ exceeded]
johnsonch_afk is now known as johnsonch
pawnbox has joined #jruby
grs has quit [Ping timeout: 244 seconds]
fedruantine has joined #jruby
grs has joined #jruby
CaptainHeavy_ has joined #jruby
CaptainHeavy has quit [Ping timeout: 260 seconds]
CaptainHeavy has joined #jruby
CaptainHeavy_ has quit [Ping timeout: 244 seconds]
bb010g has joined #jruby
shellac has joined #jruby
johnsonch is now known as johnsonch_afk
johnsonch_afk is now known as johnsonch
johnsonch is now known as johnsonch_afk
shellac has quit [Quit: Computer has gone to sleep.]
Specialist has joined #jruby
Specialist has quit [Ping timeout: 250 seconds]
Specialist has joined #jruby
zacts has joined #jruby
fedruantine has quit [Max SendQ exceeded]
Specialist has quit [Ping timeout: 260 seconds]
thedarkone2 has joined #jruby
johnsonch_afk is now known as johnsonch
johnsonch is now known as johnsonch_afk
travis-ci has joined #jruby
<travis-ci> jruby/warbler (1.x-dev:74aafba by kares): The build was fixed. (https://travis-ci.org/jruby/warbler/builds/126927516)
travis-ci has left #jruby [#jruby]
pawnbox has quit [Remote host closed the connection]
pawnbox has joined #jruby
yfeldblum has joined #jruby
fedruantine has joined #jruby
Specialist has joined #jruby
<donV> Hi all! All good?
Specialist has quit [Ping timeout: 276 seconds]
CaptainHeavy has quit [Ping timeout: 244 seconds]
johnsonch_afk is now known as johnsonch
johnsonch is now known as johnsonch_afk
yfeldblum has quit [Ping timeout: 276 seconds]
pawnbox has quit [Remote host closed the connection]
pawnbox has joined #jruby
yfeldblum has joined #jruby
<chrisseaton> donV: hello
<donV> chrisseaton: Hi!
fedruantine has quit [Max SendQ exceeded]
pawnbox has quit [Remote host closed the connection]
pawnbox has joined #jruby
Prasun has joined #jruby
Prasun has quit [Ping timeout: 276 seconds]
shellac has joined #jruby
fedruantine has joined #jruby
Prasun has joined #jruby
yfeldblum has quit [Ping timeout: 276 seconds]
tcrawley-away is now known as tcrawley
tcrawley is now known as tcrawley-away
Prasun has quit [Quit: Leaving]
shellac has quit [Quit: Computer has gone to sleep.]
yfeldblum has joined #jruby
bb010g has quit [Quit: Connection closed for inactivity]