I’ve just bumped into a little anomoly between JRuby 1.7.13 and Ruby
1.9.3.
Under Ruby 1.9.3:
This statement generates an error:
3] pry(#)> p “%0d” % nil
TypeError: can’t convert nil into Integer
from (pry):8:in `%’
[4] pry(#)>
Under JRuby 1.7.13:
The same statement does not generate an error:
[4] pry(#)> p “%0d” % nil.0.0.0:8080-1) [4] pry(#)> p
“%0d” % nil
12:07:07,902 INFO [stdout] (http-/0.0.0.0:8080-1) “0”
12:07:07,903 INFO [stdout] (http-/0.0.0.0:8080-1) => “0”
Can anyone account for the difference? Which is the “correct” response?
Hi Tim, JRuby tries to match MRI to the “max” … so this is likely a
1.9.3 / 2.1 compatibility issue.
If you need it I would report it (even better try to fix it on my own) -
it’s likely just adding a nil check on the right method (Java involved).
Esp. since this might end up as lower priority since it’s probably not
that
crucial to max the error being raise … might be wrong here.