Sha256: 899f9c301ace7a024ac9d29c1861f3c8428af7e9b3a625593ab81e6a70270a9a
Contents?: true
Size: 352 Bytes
Versions: 12
Compression:
Stored size: 352 Bytes
Contents
require 'raven/error' module Raven module Transports class Transport attr_accessor :configuration def initialize(configuration) @configuration = configuration end def send_event # (auth_header, data, options = {}) raise NotImplementedError, 'Abstract method not implemented' end end end end
Version data entries
12 entries across 12 versions & 1 rubygems