We use Semantic Versioning v2.0.0 More information: semver.org/
AIRBRAKE_VERSION | = | '5.6.1'.freeze |
Attaches a callback (builder) that runs every time the Rack integration reports an error. Can be used to attach additional data from the Rack request.
@example Adding remote IP from the Rack environment
Airbrake.add_rack_builder do |notice, request| notice[:params][:remoteIp] = request.env['REMOTE_IP'] end
@yieldparam notice [Airbrake::Notice] notice that will be sent to Airbrake @yieldparam request [Rack::Request] current rack request @yieldreturn [void] @return [void] @since 5.1.0