Inside the module, I have a class called Process .
module M Process= Class.new Process::wait(0) end
A NoMethodError occurs.
How do I access the top level Process from within the module? Is this possible without abandoning my class?
ruby
johannes
source share