Module: Tins::SexySingleton

Defined in:
lib/tins/sexy_singleton.rb

Defined Under Namespace

Modules: SingletonClassMethods

Class Method Summary collapse

Class Method Details

.__old_singleton_included__Object



13
# File 'lib/tins/sexy_singleton.rb', line 13

alias __old_singleton_included__ included

.included(klass) ⇒ Object



15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# File 'lib/tins/sexy_singleton.rb', line 15

def included(klass)
  __old_singleton_included__(klass)
  (class << klass; self; end).class_eval do
    if Object.method_defined?(:respond_to_missing?)
      def  respond_to_missing?(name, *args)
        instance.respond_to?(name) || super
      end
    else
      def respond_to?(name, *args)
        instance.respond_to?(name) || super
      end
    end

    def method_missing(name, *args, &block)
      if instance.respond_to?(name)
        instance.__send__(name, *args, &block)
      else
        super
      end
    end
  end
  super
end