| re: Ruby and GUI programming (Easiest Setup)
I would recommend the Ruby Cookbook.
Its got a nice writeup on various gui options.
Of course what I did was a bit different.
I decided to go fully "rails".
Here's what I've done, and have never looked back.
Assuming your on windows
1. Aptana - IDE For Rails - Need to add the rails plugin
2. active_scaffold - This gives you nice "gui" screens - (Views in RAILS Terms)
3. mysql - Just make sure your tables have "ID" in the beginning
4. For each table you need a "controller", which can be three lines, and a model
5. The model specs the relationship of your tables.
6. There's a separate "plugin" that can convert the whole into a exe if you wish.
In a few weeks I've done a application with 50 tables. :)
I now have my own generators for RAILS that create active_scaffold based controllers, and basic model files, even updates my "menu" file using
widgets.
And on top of that I did conversion from Pervasive and DBASE tables, with cleanup of the data.
|