Class: CIM::Qualifier

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

Instance Method Summary collapse

Dynamic Method Handling

This class handles dynamic methods through the method_missing method

#method_missing(name, *args) ⇒ Object



41
42
43
44
45
46
47
# File 'lib/genprovider/provider.rb', line 41

def method_missing name, *args
  if name == :"[]"
	value[*args]
  else
	super name, *args
  end
end