Class: Raven::HttpInterface
- Includes:
- RackInterface
- Defined in:
- lib/raven/interfaces/http.rb,
lib/raven/integrations/rack.rb
Instance Attribute Summary collapse
-
#cookies ⇒ Object
Returns the value of attribute cookies.
-
#data ⇒ Object
Returns the value of attribute data.
-
#env ⇒ Object
Returns the value of attribute env.
-
#headers ⇒ Object
Returns the value of attribute headers.
-
#method ⇒ Object
Returns the value of attribute method.
-
#query_string ⇒ Object
Returns the value of attribute query_string.
-
#url ⇒ Object
Returns the value of attribute url.
Instance Method Summary collapse
-
#initialize(*arguments) ⇒ HttpInterface
constructor
A new instance of HttpInterface.
Methods included from RackInterface
Methods inherited from Interface
Constructor Details
#initialize(*arguments) ⇒ HttpInterface
Returns a new instance of HttpInterface.
14 15 16 17 18 19 |
# File 'lib/raven/interfaces/http.rb', line 14 def initialize(*arguments) self.headers = {} self.env = {} self. = nil super(*arguments) end |
Instance Attribute Details
#cookies ⇒ Object
Returns the value of attribute cookies.
10 11 12 |
# File 'lib/raven/interfaces/http.rb', line 10 def @cookies end |
#data ⇒ Object
Returns the value of attribute data.
8 9 10 |
# File 'lib/raven/interfaces/http.rb', line 8 def data @data end |
#env ⇒ Object
Returns the value of attribute env.
12 13 14 |
# File 'lib/raven/interfaces/http.rb', line 12 def env @env end |
#headers ⇒ Object
Returns the value of attribute headers.
11 12 13 |
# File 'lib/raven/interfaces/http.rb', line 11 def headers @headers end |
#method ⇒ Object
Returns the value of attribute method.
7 8 9 |
# File 'lib/raven/interfaces/http.rb', line 7 def method @method end |
#query_string ⇒ Object
Returns the value of attribute query_string.
9 10 11 |
# File 'lib/raven/interfaces/http.rb', line 9 def query_string @query_string end |
#url ⇒ Object
Returns the value of attribute url.
6 7 8 |
# File 'lib/raven/interfaces/http.rb', line 6 def url @url end |