Class: CritsendEvents::Config

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

Constant Summary collapse

@@mount_point =
"/critsend/receiver"
@@authentication_key =
""

Class Method Summary collapse

Class Method Details

.authentication_keyObject



8
# File 'lib/critsend_events/config.rb', line 8

def authentication_key; @@authentication_key; end

.authentication_key=(val) ⇒ Object



9
# File 'lib/critsend_events/config.rb', line 9

def authentication_key=(val); @@authentication_key = val; end

.mount_pointObject



4
# File 'lib/critsend_events/config.rb', line 4

def mount_point; @@mount_point; end

.mount_point=(val) ⇒ Object



5
# File 'lib/critsend_events/config.rb', line 5

def mount_point=(val); @@mount_point = val; end

.setup {|_self| ... } ⇒ Object

Yields:

  • (_self)

Yield Parameters:



12
13
14
# File 'lib/critsend_events/config.rb', line 12

def setup
  yield self
end