Module: RightConf::Singleton::ClassMethods

Defined in:
lib/rconf/ruby_extensions.rb

Instance Method Summary collapse

Dynamic Method Handling

This class handles dynamic methods through the method_missing method

#method_missing(meth, *args, &blk) ⇒ Object

Redirect class methods to singleton instance



21
22
23
# File 'lib/rconf/ruby_extensions.rb', line 21

def method_missing(meth, *args, &blk)
  self.instance.__send__(meth, *args, &blk)
end