ruby-event

ruby-event: making event-driven applications easy

    I've been doing a lot of event-driven programming in ruby lately, and it's involved a lot of repeating to generate methods for each and every event my application can fire off, and I can only support one handler per event with my current methods. Since I'm a big believer in DRY (Don't Repeat Yourself), and I was also spoiled by the excellent event handling in C# and Vala (Gobject, really), I decided to write something similar to ruby. This, is ruby-event.