[ANN] simple_gui_creator 0.2.0 released

Hello all.

simple_gui_creator is a tool designed to make integrating a GUI front
end to your ruby script less painful, or even easy.

For instance, use this template file:

---------------My Window Title--------------------------
| [Click this button :button1] |

[Click this button too! :button2]

Like this:
a =
SimpleGuiCreator::ParseTemplate.new.parse_setup_filename(‘template.tmpl’)

a.elements[:button1].on_clicked { puts ‘you clicked button1’ }

0.2.0 changes:

add checkboxes ASCII art, also dropdowns, allow for more than one type
on a line.

Full info can be found here:

Enjoy.
Feedback welcome.
-roger-