Route53::Web

Route53::Web is a (Resque::Server-inspired) micro-app wrapping ruby_route_53 provides a UI for viewing how your Route53 is configured (later, the idea is to also be able to edit/add stuff). Exciting, no?

Simple enough to get going. In your Gemfile:

gem 'route53web'

Shocking. Needs some AWS configuration:

Route53::Web.config = { :access => '123', :secret => 'abc' }

Now just mount it somewhere – routes.rb, maybe?:

mount Route53::Web, :at => '/route53'

…or use a config.ru, whatever really:

require 'route53web'
run Route53::Web.new

Contributing to route53web

Copyright © 2011 Ryan Funduk. See LICENSE.txt for further details.