Ruby Front-end for MailChimp
As part of a recent project, I implemented Ruby front-end to the API of the bulk-mailing service MailChimp. The main feature is the Session, which eliminates the need to insert the MailChimp session key into every API call. Example # Authenticate to MailChimp and subscribe a user MailChimp::Session.open( “user”, “pass” ) do |session| session.listSubscribe( “mailchimp_list_id”, [...]