Class: Squake::Response

Inherits:
T::Struct
  • Object
show all
Extended by:
T::Sig
Defined in:
lib/squake/response.rb

Instance Method Summary collapse

Instance Method Details

#errorObject



26
27
28
29
30
# File 'lib/squake/response.rb', line 26

def error
  return if success?

  Squake::APIError.new(response: self)
end

#error_messageObject



33
34
35
36
37
38
39
40
41
42
43
# File 'lib/squake/response.rb', line 33

def error_message
  return if success?

  <<~TXT
    Failed Request
      http_code=#{code}
      body=#{::Oj.dump(body, Squake::OJ_CONFIG)}
      original_request_http_method=#{original_request.method}
      original_request_http_path=#{original_request.path}
  TXT
end

#failure?Boolean

Returns:

  • (Boolean)


21
22
23
# File 'lib/squake/response.rb', line 21

def failure?
  !success?
end

#success?Boolean

Returns:

  • (Boolean)


16
17
18
# File 'lib/squake/response.rb', line 16

def success?
  code >= 200 && code < 300
end