Exception: StateMachines::IntegrationNotFound

Inherits:
Error
  • Object
show all
Defined in:
lib/state_machines/error.rb

Overview

An invalid integration was specified

Instance Attribute Summary

Attributes inherited from Error

#object

Instance Method Summary collapse

Constructor Details

#initialize(name) ⇒ IntegrationNotFound

Returns a new instance of IntegrationNotFound.



18
19
20
# File 'lib/state_machines/error.rb', line 18

def initialize(name)
  super(nil, "#{name.inspect} is an invalid integration. #{error_message}")
end

Instance Method Details

#error_messageObject



34
35
36
37
38
39
40
# File 'lib/state_machines/error.rb', line 34

def error_message
  if Integrations.list.size.zero?
    no_integrations
  else
    valid_integrations
  end
end

#no_integrationsObject



30
31
32
# File 'lib/state_machines/error.rb', line 30

def no_integrations
  'No integrations registered'
end

#valid_integrationsObject



22
23
24
# File 'lib/state_machines/error.rb', line 22

def valid_integrations
  "Valid integrations are: #{valid_integrations_name}"
end

#valid_integrations_nameObject



26
27
28
# File 'lib/state_machines/error.rb', line 26

def valid_integrations_name
  Integrations.list.collect(&:integration_name)
end