# File lib/ramaze/contrib/addressable_route.rb, line 26
    def initialize(app, routes = {})
      @app = app
      @routes = {}

      routes.each{|from, to| map(from, to) }
    end