Module: Redwood::Singleton::ClassMethods
- Defined in:
- lib/sup/util.rb
Instance Method Summary
collapse
Dynamic Method Handling
This class handles dynamic methods through the method_missing method
#method_missing(meth, *a, &b) ⇒ Object
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
|
# File 'lib/sup/util.rb', line 568
def method_missing meth, *a, &b
raise "no #{name} instance defined in method call to #{meth}!" unless defined? @instance
return nil if @instance.nil?
if meth.to_s[-1,1] == '='
class_eval "def self.#{meth}(a); @instance.send :#{meth}, a; end"
else
class_eval "def self.#{meth}(*a, &b); @instance.send :#{meth}, *a, &b; end"
end
@instance.send meth, *a, &b
end
|
Instance Method Details
#deinstantiate! ⇒ Object
567
|
# File 'lib/sup/util.rb', line 567
def deinstantiate!; @instance = nil; end
|
#init(*args) ⇒ Object
587
588
589
590
|
# File 'lib/sup/util.rb', line 587
def init *args
raise "there can be only one! (instance)" if instantiated?
@instance = new(*args)
end
|
565
|
# File 'lib/sup/util.rb', line 565
def instance; @instance; end
|
#instantiated? ⇒ Boolean
566
|
# File 'lib/sup/util.rb', line 566
def instantiated?; defined?(@instance) && !@instance.nil?; end
|