If all you want is the standard message box, you could just access the
direct WinAPI function:
msgbox = Win32API.new( 'user32', 'MessageBox', ['i', 'p', 'p', 'i'],
'i' )
flags = 0 # 0, ok, 1, ok cancel, etc
result = msgbox.call(0, "message", "title", flags )
Lookup the MessageBox function on msdn to determine all the flags.
Note, this is probably the wrong way to go if you want more extended
gui interactions; at that point it would likely be more worth your time
to climb the learning curove on one of the other Ruby Gui bindings.
Cheers,
- alan