Class: ActionDispatch::Response::Header

Inherits:
Hash
  • Object
show all
Defined in:
lib/action_dispatch/http/response.rb

Overview

:nodoc:

Instance Method Summary collapse

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_hashObject



56
57
58
# File 'lib/action_dispatch/http/response.rb', line 56

def to_hash
  __getobj__.dup
end