module Restfulness

Constants

STATUSES

List of standard HTTP statuses blatently stolen from Ruby RestClient.

github.com/rest-client/rest-client

VERSION

Attributes

logger[RW]

Public Instance Methods

sensitive_params() click to toggle source
# File lib/restfulness.rb, line 48
def sensitive_params
  @sensitive_params ||= [:password]
end
sensitive_params=(params) click to toggle source

Determine which parameters keys should be filtered in logs, etc

# File lib/restfulness.rb, line 44
def sensitive_params=(params)
  @sensitive_params = params
end