class Response::Params

Allows more comfortable use of Symbol keys when accessing params (which are string keys).

Public Instance Methods

[](key) click to toggle source
Calls superclass method
# File lib/endpoint/response.rb, line 11
def [](key)
  super(key.to_s)
end
[]=(key, value) click to toggle source
Calls superclass method
# File lib/endpoint/response.rb, line 14
def []=(key, value)
  super(key.to_s, value)
end