Sha256: 7568be730448319d5a2083848f1be6274498990716b14262034055cbd8d4e1b9

Contents?: true

Size: 429 Bytes

Versions: 7

Compression:

Stored size: 429 Bytes

Contents

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

require "raven/transports/dummy"
require "raven/transports/http"
require "raven/transports/stdout"

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
sentry-raven-3.1.2 lib/raven/transports.rb
sentry-raven-3.1.1 lib/raven/transports.rb
sentry-raven-3.1.0 lib/raven/transports.rb
sentry-raven-3.0.4 lib/raven/transports.rb
sentry-raven-3.0.3 lib/raven/transports.rb
sentry-raven-3.0.2 lib/raven/transports.rb
sentry-raven-3.0.1 lib/raven/transports.rb