Class: Adhearsion::DialPlan::Loader::ContextNameCollector

Inherits:
Object
  • Object
show all
Defined in:
lib/adhearsion/voip/dial_plan.rb

Overview

< ::BlankSlate

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeContextNameCollector

Returns a new instance of ContextNameCollector.



192
193
194
# File 'lib/adhearsion/voip/dial_plan.rb', line 192

def initialize
  @contexts = {}
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method

#method_missing(name, *args, &block) ⇒ Object



196
197
198
199
# File 'lib/adhearsion/voip/dial_plan.rb', line 196

def method_missing(name, *args, &block)
  super if !block_given? || args.any?
  contexts[name] = DialplanContextProc.new(name, &block)
end

Instance Attribute Details

#contextsObject (readonly)

Returns the value of attribute contexts.



191
192
193
# File 'lib/adhearsion/voip/dial_plan.rb', line 191

def contexts
  @contexts
end

Class Method Details

.const_missing(name) ⇒ Object



183
184
185
186
187
# File 'lib/adhearsion/voip/dial_plan.rb', line 183

def const_missing(name)
  super
rescue ArgumentError
  raise NameError, %(undefined constant "#{name}")
end