Class: Raven::Transports::Transport
- Inherits:
-
Object
- Object
- Raven::Transports::Transport
- Defined in:
- lib/raven/transports.rb
Instance Attribute Summary collapse
-
#configuration ⇒ Object
Returns the value of attribute configuration.
Instance Method Summary collapse
-
#initialize(configuration) ⇒ Transport
constructor
A new instance of Transport.
-
#send_event ⇒ Object
(auth_header, data, options = {}).
Constructor Details
#initialize(configuration) ⇒ Transport
Returns a new instance of Transport.
6 7 8 |
# File 'lib/raven/transports.rb', line 6 def initialize(configuration) @configuration = configuration end |
Instance Attribute Details
#configuration ⇒ Object
Returns the value of attribute configuration.
4 5 6 |
# File 'lib/raven/transports.rb', line 4 def configuration @configuration end |
Instance Method Details
#send_event ⇒ Object
(auth_header, data, options = {})
10 11 12 |
# File 'lib/raven/transports.rb', line 10 def send_event # (auth_header, data, options = {}) raise NotImplementedError, 'Abstract method not implemented' end |