<TimGitter[m]1>
how to add imports for external libraries.. i tried to use Zlib to compress the data but i'm getting NameError (uninitialized constant Zlib)
<TimGitter[m]1>
in REPL
<headius[m]>
Is this using a "normal" JRuby install or the "complete" jar?
<headius[m]>
Generally, the standard library is like zlib should just load. With a normal jruby installed, you might have to set jruby.home property to the base dir
<TimGitter[m]1>
it's a jruby unstall
<TimGitter[m]1>
*install
<headius[m]>
RubyMine should be able to add that JRuby install as one of it's runtimes for editing and debugging etc
<TimGitter[m]1>
ok
<headius[m]>
Beyond that, I'm not sure if I can help. I don't know how they're reppel works exactly. I just run IRB from command line
<headius[m]>
Their repl
<headius[m]>
But it should know about a jruby install and how it's structured
<TimGitter[m]1>
yeah me too using irb
<TimGitter[m]1>
it worked!!!
<TimGitter[m]1>
i had to use require 'zlib'
<TimGitter[m]1>
all fine with irb :)
<headius[m]>
Oh no problem then
<headius[m]>
Have fun
<TimGitter[m]1>
is there any mechanics that if i run jruby code in repl control flow should be attached to intellij code in debugging mode
<TimGitter[m]1>
may be i'm crazy to think this :)
<headius[m]>
It certainly might be possible, I have not tracked how they hook up debugging these days
ChrisSeatonGitte has joined #jruby
<ChrisSeatonGitte>
Is it still correct to run specs in JRuby with for example `bin/jruby spec/mspec/bin/mspec :command_line`? I get lots of failures doing this on `master` and `9.2.7.0`. What am I doing wrong?
<ChrisSeatonGitte>
I think maybe I'm not picking up the right tags, but the failures don't appear to have corresponding tags. Maybe I'm not building correctly? I'm still using `./mvnw`?
<ChrisSeatonGitte>
I always get `0 tagged` so this can't be right.