Exception: Carmine::Error

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

Overview

Public: The base error for the client.

Raised when there is something wrong with the colorization request.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(response) ⇒ Error

Returns a new instance of Error.



13
14
15
# File 'lib/carmine.rb', line 13

def initialize(response)
  @response = response
end

Instance Attribute Details

#responseObject (readonly)

Returns the value of attribute response.



11
12
13
# File 'lib/carmine.rb', line 11

def response
  @response
end

Instance Method Details

#to_sObject



17
18
19
20
# File 'lib/carmine.rb', line 17

def to_s
  return @response.body unless /\(.*?\)/ =~ @response.body
  $~[0].gsub /[()]/, ""
end