Skip to content

Instantly share code, notes, and snippets.

@gabrielstuff
Created August 1, 2011 17:52
Show Gist options
  • Save gabrielstuff/1118630 to your computer and use it in GitHub Desktop.
Save gabrielstuff/1118630 to your computer and use it in GitHub Desktop.
a simple test of rake middleware
class i18n_responder
def initialize(app)
@app = app
end
def call(env)
[200, {"content-Type" => "text/html"}, "Hello, World!"]
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment