module Sentry::Rails::ControllerMethods

def with_request_scope

def with_request_scope
  Sentry.with_scope do |scope|
    scope.set_rack_env(request.env)
    yield
  end
end