class Workspace < Container include Singleton def add_items msg = '

Hello World!

' msg += '

Add your content widgets here.

' msg += '

Static widgets (navbar and footer) should be added to the viewport.

' wrap = '
%s
' % msg MessageWindow.new wrap, 'Hello World!' end def initial_background_color SLATEGRAY end end