Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View mfojtik's full-sized avatar

Michal Fojtik mfojtik

View GitHub Profile
@mfojtik
mfojtik / config.ru
Created January 13, 2012 11:56 — forked from adjohu/config.ru
module Rack
class JSON
def initialize app
@app = app
end
def call env
status, headers, body = @app.call env
[status, headers, body.to_json]
end
end