I recently created Gimme, a small ruby gem which allows you to configure and access a simple Registry using a nice little DSL. Gimme in a paragraph The general idea of Gimme is to allow a single point for configuring the well known services which your application uses (think DB connection, twitter API gateway, email server, etc). Once configured Gimme then exposes a single point to access those services, without needing to resort to singletons or global variables. Show me teh codez Here's a s...