On Thu, 25 Jan 2001, Michael Schuerig wrote: > > I don't seem to be able to get ruby-libglade 1.1 to work. When I run the > sample script, a GTK+ window pops up for a *very* short time before the > script terminates with this stack trace > > test.rb:6:in `method': undefined method `destroy' for class `Test' What version of libglade do you have? I only tested with version 0.13. If I'm right about what's going on, libglade isn't recognizing the "Object" field, which I think is a relatively recent addition to glade. The following should let you run the demo - open up the test.glade file in glade select the "Exit" button in window1 and open up the properties window go to the signals tab, select the "clicked" signal delete "window1" from the Object field changed "destroy" to "quit" in the Handler field (I had the button chained to the window's destroy signal; this just has it directly invoke the quit handler) Avi