Exception: Assemble::Response::Error

Inherits:
StandardError
  • Object
show all
Defined in:
lib/assemble/response.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(response) ⇒ Error

Returns a new instance of Error.



5
6
7
8
9
10
11
12
13
14
15
# File 'lib/assemble/response.rb', line 5

def initialize(response)
  @response = response
  super(
    {
      :body    => response.body,
      :headers => response.headers,
      :request => response.request,
      :status  => response.status,
    }.inspect
  )
end

Instance Attribute Details

#responseObject (readonly)

Returns the value of attribute response.



3
4
5
# File 'lib/assemble/response.rb', line 3

def response
  @response
end

Instance Method Details

#errorsObject



17
18
19
# File 'lib/assemble/response.rb', line 17

def errors
  response.body["errors"]
end

#full_messagesObject



21
22
23
24
25
26
27
# File 'lib/assemble/response.rb', line 21

def full_messages
  if errors.is_a?(Hash)
    errors.inject([]){|r,(k,v)| r += v.map{|s| "#{k.capitalize} #{s}"}}
  else # Array or String
    errors
  end
end