Sha256: 1496eee130fc1a80fc8ea5bcc5dda0278f3176371e81c755a3d4ec81107a0509
Contents?: true
Size: 340 Bytes
Versions: 2
Compression:
Stored size: 340 Bytes
Contents
# frozen_string_literal: true class UniformNotifier class RollbarNotifier < Base def self.active? !!UniformNotifier.rollbar end protected def self._out_of_channel_notify(data) message = data.values.compact.join("\n") exception = Exception.new(message) Rollbar.info(exception) end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
uniform_notifier-1.12.1 | lib/uniform_notifier/rollbar.rb |
uniform_notifier-1.12.0 | lib/uniform_notifier/rollbar.rb |