module CubaApi class Ext2MimeRack def initialize( app, *allowed) @app = app @allowed = allowed end def call(env) status, headers, body = @app.call(env) end end end