You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$ bin/jruby bin/irb
irb(main):001:0> Struct::Tms
=> Struct::Tms
irb(main):002:0> Process::Tms
NameError: uninitialized constant Process::Tms
from org/jruby/RubyModule.java:3103:in `const_missing'
from (irb):2:in `<eval>'
from org/jruby/RubyKernel.java:1005:in `eval'
from org/jruby/RubyKernel.java:1315:in `loop'
from org/jruby/RubyKernel.java:1125:in `catch'
from org/jruby/RubyKernel.java:1125:in `catch'
from bin/irb:13:in `<top>'
The text was updated successfully, but these errors were encountered:
In MRI it's canonically
Process::Tms
andStruct::Tms
is an alias. In JRuby there is onlyStruct::Tms
.The text was updated successfully, but these errors were encountered: