Class: Protocol::HTTP::Header::Vary
- Defined in:
 - lib/protocol/http/header/vary.rb
 
Constant Summary
Constants inherited from Split
Instance Method Summary collapse
- #<<(value) ⇒ Object
 - 
  
    
      #initialize(value)  ⇒ Vary 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of Vary.
 
Methods inherited from Split
Constructor Details
#initialize(value) ⇒ Vary
Returns a new instance of Vary.
      12 13 14  | 
    
      # File 'lib/protocol/http/header/vary.rb', line 12 def initialize(value) super(value.downcase) end  | 
  
Instance Method Details
#<<(value) ⇒ Object
      16 17 18  | 
    
      # File 'lib/protocol/http/header/vary.rb', line 16 def << value super(value.downcase) end  |