class RestCore::Bypass

Public Class Methods

new(app) click to toggle source
# File lib/rest-core/middleware/bypass.rb, line 5
def initialize app
  @app = app
end

Public Instance Methods

call(env, &k) click to toggle source
# File lib/rest-core/middleware/bypass.rb, line 9
def call env, &k
  @app.call(env, &k)
end