Class: UNotifier::Configuration

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeConfiguration

Returns a new instance of Configuration.



10
11
12
13
14
15
16
17
# File 'lib/configuration.rb', line 10

def initialize
  @site_providers = []
  @external_providers = []
  @system_providers = []
  @resource_class = nil
  @notifications_path = nil
  @localization_provider = nil
end

Instance Attribute Details

#external_providersObject

Returns the value of attribute external_providers.



4
5
6
# File 'lib/configuration.rb', line 4

def external_providers
  @external_providers
end

#localization_providerObject

Returns the value of attribute localization_provider.



8
9
10
# File 'lib/configuration.rb', line 8

def localization_provider
  @localization_provider
end

#notifications_pathObject

Returns the value of attribute notifications_path.



7
8
9
# File 'lib/configuration.rb', line 7

def notifications_path
  @notifications_path
end

#resource_classObject

Returns the value of attribute resource_class.



6
7
8
# File 'lib/configuration.rb', line 6

def resource_class
  @resource_class
end

#site_providersObject

Returns the value of attribute site_providers.



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

def site_providers
  @site_providers
end

#system_providersObject

Returns the value of attribute system_providers.



5
6
7
# File 'lib/configuration.rb', line 5

def system_providers
  @system_providers
end