module Utils::IRB::Shell

def irb_constants(modul = self)

Return all the constants defined in +modul+.
def irb_constants(modul = self)
  modul.constants.map { |c| ConstantWrapper.new(modul.const_get(c), c) }.sort
end