<chrisseaton>
Anyone around tonight? Is org.jruby.util.Random designed like that to match MRI's PRNG? Have you found that's needed by a lot of applications?
havenwood has quit [Ping timeout: 246 seconds]
<lopex>
chrisseaton: jruby has a port of MRI's mersenne twister
_dabradley has joined #jruby
zorak8 has joined #jruby
yfeldblum has quit [Remote host closed the connection]
toshetm has quit [Ping timeout: 244 seconds]
x1337807x has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
BobFunk has quit [Ping timeout: 256 seconds]
kaawee has quit [Ping timeout: 250 seconds]
zorak8 has quit [Ping timeout: 258 seconds]
JRubyGithub has joined #jruby
<JRubyGithub>
[jruby] chrisseaton pushed 1 new commit to truffle-head: http://git.io/_NvfgA
<JRubyGithub>
jruby/truffle-head 0e6ced5 Chris Seaton: Merge branch 'master' into truffle-head
kfpratt has quit [Read error: Connection reset by peer]
JRubyGithub has joined #jruby
<JRubyGithub>
[jruby] headius pushed 3 new commits to update_stdlib: http://git.io/UpVm-g
<JRubyGithub>
jruby/update_stdlib 6a3b991 Charles Oliver Nutter: Apply psych/test_emitter.rb change from MRI.
<JRubyGithub>
jruby/update_stdlib 688a71b Charles Oliver Nutter: Update to Snakeyaml 1.14.
<JRubyGithub>
jruby/update_stdlib 4d82e39 Charles Oliver Nutter: Exclude test due to SnakeYAML behavior.
JRubyGithub has left #jruby [#jruby]
kfpratt has joined #jruby
purplefox has quit [Ping timeout: 258 seconds]
projectodd-ci has quit [Ping timeout: 256 seconds]
projectodd-ci has joined #jruby
yfeldblum has joined #jruby
JRubyGithub has joined #jruby
<JRubyGithub>
[jruby] headius pushed 1 new commit to update_stdlib: http://git.io/_4p4Jg
JRubyGithub has left #jruby [#jruby]
<JRubyGithub>
jruby/update_stdlib 47b4623 Charles Oliver Nutter: Pull up EXCLUDES hacks into test/lib's minitest....
subbu has joined #jruby
cultureulterior1 has quit [Quit: cultureulterior1]
cultureulterior1 has joined #jruby
thsig has joined #jruby
<headius>
subbu: bunch of LocalJumpErrors here, while running MRI tests on my branch update_stdlib (2.2 stdlib and tests): lib/ruby/stdlib/webrick/server.rb:216
mrmargolis has quit []
<headius>
in test:mri net/http tests
<headius>
there may be a number of tests failing because of this, e.g. socket tests, other protocols
JRubyGithub has joined #jruby
<JRubyGithub>
[jruby] headius pushed 3 new commits to jruby-1_7: http://git.io/l1HNHg
<JRubyGithub>
jruby/jruby-1_7 d3d8355 Pablo Varela: Made Exception#set_backtrace compliant with Ruby documentation by supporting single Strings.
<JRubyGithub>
jruby/jruby-1_7 1bb4722 Pablo Varela: Fixed spacing
<JRubyGithub>
jruby/jruby-1_7 ceb199a Charles Oliver Nutter: Merge pull request #2068 from pabloatplumbee/jruby-1_7...
<fawefeawfewa>
But if I know what I want to learn, I already know it...
multibot_ has quit [Remote host closed the connection]
<avsej>
in short I see this when I run 'jruby -v': OptoFactory.java:109:in `<clinit>': java.lang.NoClassDefFoundError: org/objectweb/asm/Opcodes
multibot_ has joined #jruby
JRubyGithub has joined #jruby
<JRubyGithub>
[jruby] headius pushed 4 new commits to jruby-1_7: http://git.io/e0kNnA
<JRubyGithub>
jruby/jruby-1_7 23570f5 Gustav Munkby: Avoid manual unroll of non-hot SipHash loops...
<JRubyGithub>
jruby/jruby-1_7 43b2ef4 Gustav Munkby: Hoist SipHashInline range checks...
<JRubyGithub>
jruby/jruby-1_7 c02fcd7 Gustav Munkby: Use Unsafe to read a long at a time...
JRubyGithub has left #jruby [#jruby]
BobFunk has quit [Ping timeout: 264 seconds]
JRubyGithub has joined #jruby
<JRubyGithub>
[jruby] headius pushed 2 new commits to master: http://git.io/k7X59Q
<JRubyGithub>
jruby/master 696dedf Robin Dupret: Module#ancestors now includes singletons themselves...
<JRubyGithub>
jruby/master 3f5d6ed Charles Oliver Nutter: Merge pull request #1870 from robin850/singleton-ancestors...
JRubyGithub has left #jruby [#jruby]
<headius>
avsej: that's really weird
<headius>
that class comes from the "ASM" library, which is what we use for all JVM bytecode generation
<headius>
if that's missing something's very strange with the build, since it shouldn't even compile
<headius>
can you figure out what package it is installing?
<headius>
fawefeawfewa: I guess that makes it hard to answer your question, but I'd say you get good at learning more advanced Ruby by reading code from established projects like Rails
<headius>
not that Rails is the *style* of Ruby I'd recommend learning, but it does make extensive use of many "advanced" Ruby features
<headius>
we usually rewrite the package naming for ASM because many Java libraries depend on different versions of it...I'm guessing they published a build of JRuby that rewrites references to the package but does not rewrite the library itself
<headius>
er, other way around
<headius>
rewritten asm but still accessing the non-rewritten package
<avsej>
headius, it shows nothing
<headius>
ok, then it's a more severe problem with their build...the classes we need aren't even there
<avsej>
:(
<headius>
there are newer packages that I know work for people
<headius>
are you stuck with that one?
<headius>
1.7.2 is over a year old I think
<avsej>
i was just using the one from the repo. fedora rawhide is kind of debian unstable, the place where the most fresh software getting tested
<headius>
avsej: locally, I see lines like this: org/jruby/org/objectweb/asm/util/ASMifiable.class
<headius>
avsej: hmm
<headius>
I don't remember who was working on fedora packaging for JRuby but there should definitely be newer packages than 1.7.2
<headius>
maybe they're not in any of the main lines yet :-\
<headius>
avsej: you could try yum install objectweb-asm
<headius>
maybe they have this busted up so deps can't be bundled like we usually do
<headius>
but missing a dependency on that lib
<avsej>
it says it is installed
<avsej>
btw on stable fedora there no such package in jar, but yet it works
<headius>
Antiarc: how far did you get on Process#groups? I noticed the long list of fileutils tests all fail because that's missing, and now I'm eager to get it in :-)
<avsej>
oh, but objectweb-asm version different: 3.3.1 in stable and 5.0.3 in rawhide
<avsej>
can it break things?
<headius>
hmmm
brazenhullabaloo has quit [Max SendQ exceeded]
<headius>
yes it could
<headius>
hmm
<headius>
I see objectweb-asm4 in your output
<headius>
so I'm confused about 4 vs 5.0.3
<headius>
avsej: can I get a copy of that package's jruby.jar easily? I don't have fedora rawhide here
<avsej>
sure, I can put it somewhere one sec
<byteit101>
headius: I'm not really attached to that PR as-is since a) in its current form its not as explicit about :: as it was originally and b) its was enebo's suggestion initially and I don't have a strong opinion on it
<headius>
byteit101: did we already merge your :: patch?
<byteit101>
no, thats the one you were talking about 4 minuts ago on github