Class: ActionDispatch::Response::Header
- Inherits:
-
Hash
- Object
- Hash
- ActionDispatch::Response::Header
- Defined in:
- lib/action_dispatch/http/response.rb
Overview
:nodoc:
Instance Method Summary collapse
- #[]=(k, v) ⇒ Object
-
#initialize(response, header) ⇒ Header
constructor
A new instance of Header.
- #merge(other) ⇒ Object
- #to_hash ⇒ Object
Constructor Details
#initialize(response, header) ⇒ Header
Returns a new instance of Header.
39 40 41 42 |
# File 'lib/action_dispatch/http/response.rb', line 39 def initialize(response, header) @response = response super(header) end |
Instance Method Details
#[]=(k, v) ⇒ Object
44 45 46 47 48 49 50 |
# File 'lib/action_dispatch/http/response.rb', line 44 def []=(k, v) if @response.sending? || @response.sent? raise ActionDispatch::IllegalStateError, "header already sent" end super end |
#merge(other) ⇒ Object
52 53 54 |
# File 'lib/action_dispatch/http/response.rb', line 52 def merge(other) self.class.new @response, __getobj__.merge(other) end |
#to_hash ⇒ Object
56 57 58 |
# File 'lib/action_dispatch/http/response.rb', line 56 def to_hash __getobj__.dup end |