Class: Rubu::Info

Inherits:
Object
  • Object
show all
Defined in:
lib/rubu.rb

Overview

Information space for program.

Constant Summary collapse

@@info =
{}

Class Method Summary collapse

Class Method Details

.[](key) ⇒ Object

Get Info entry value.



478
479
480
# File 'lib/rubu.rb', line 478

def Info.[]( key )
    @@info[ key ]
end

.[]=(key, val) ⇒ Object

Set Info entry value.



473
474
475
# File 'lib/rubu.rb', line 473

def Info.[]=( key, val )
    @@info[ key ] = val
end