Class: Pina::RestAdapter::Response

Inherits:
Object
  • Object
show all
Defined in:
lib/pina/rest_adapter.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(status_code, body) ⇒ Response

Returns a new instance of Response.



72
73
74
75
# File 'lib/pina/rest_adapter.rb', line 72

def initialize(status_code, body)
  @status_code = status_code
  @body        = body
end

Instance Attribute Details

#bodyObject

Returns the value of attribute body.



70
71
72
# File 'lib/pina/rest_adapter.rb', line 70

def body
  @body
end

#status_codeObject

Returns the value of attribute status_code.



70
71
72
# File 'lib/pina/rest_adapter.rb', line 70

def status_code
  @status_code
end

Instance Method Details

#ok?Boolean

Returns:

  • (Boolean)


77
78
79
# File 'lib/pina/rest_adapter.rb', line 77

def ok?
  status_code == 200 || status_code == 201
end

#to_hashObject



81
82
83
# File 'lib/pina/rest_adapter.rb', line 81

def to_hash
  ActiveSupport::JSON.decode(body)
end