Sha256: 17108ea09571ed3ef5a0cd3f684ec4f76f6c98eeeecefae759908a86f00e556e

Contents?: true

Size: 853 Bytes

Versions: 112

Compression:

Stored size: 853 Bytes

Contents

require 'singleton'

module Tins

  SexySingleton = Singleton.dup

  module SexySingleton
    module SingletonClassMethods
    end
  end

  class << SexySingleton
    alias __old_singleton_included__ included

    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
  end
end

Version data entries

112 entries across 101 versions & 9 rubygems

Version Path
tins-1.13.0 lib/tins/sexy_singleton.rb
tdiary-5.0.2 vendor/bundle/gems/tins-1.12.0/lib/tins/sexy_singleton.rb
tins-1.12.0 lib/tins/sexy_singleton.rb
tins-1.11.0 lib/tins/sexy_singleton.rb
tdiary-5.0.1 vendor/bundle/gems/tins-1.10.2/lib/tins/sexy_singleton.rb
tins-1.10.2 lib/tins/sexy_singleton.rb
tins-1.10.1 lib/tins/sexy_singleton.rb
tins-1.10.0 lib/tins/sexy_singleton.rb
tins-1.9.0 lib/tins/sexy_singleton.rb
tins-1.8.2 lib/tins/sexy_singleton.rb
tins-1.8.1 lib/tins/sexy_singleton.rb
tins-1.8.0 lib/tins/sexy_singleton.rb
tins-1.7.0 lib/tins/sexy_singleton.rb
suzuko-0.1.8 vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/tins/sexy_singleton.rb
suzuko-0.1.7 vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/tins/sexy_singleton.rb
mastermind_adeybee-0.1.4 vendor/bundle/ruby/2.2.0/gems/tins-1.6.0/lib/tins/sexy_singleton.rb
mastermind_adeybee-0.1.3 vendor/bundle/ruby/2.2.0/gems/tins-1.6.0/lib/tins/sexy_singleton.rb
mastermind_adeybee-0.1.2 vendor/bundle/ruby/2.2.0/gems/tins-1.6.0/lib/tins/sexy_singleton.rb
mastermind_adeybee-0.1.1 vendor/bundle/ruby/2.2.0/gems/tins-1.6.0/lib/tins/sexy_singleton.rb
vagrant-cloudstack-1.2.0 vendor/bundle/gems/tins-1.6.0/lib/tins/sexy_singleton.rb