Sha256: 611d21d9a7cb519b9e28a3b1254dd6943d80b5754704d90907ca7154a8beecc6

Contents?: true

Size: 356 Bytes

Versions: 58

Compression:

Stored size: 356 Bytes

Contents

module FactoryGirl
  class Decorator
    class InvocationTracker < Decorator
      def initialize(component)
        super
        @invoked_methods = []
      end

      def method_missing(name, *args, &block)
        @invoked_methods << name
        super
      end

      def __invoked_methods__
        @invoked_methods.uniq
      end
    end
  end
end

Version data entries

58 entries across 46 versions & 11 rubygems

Version Path
ffactory_girl-4.8.2 lib/factory_girl/decorator/invocation_tracker.rb
factory_girl-4.9.0 lib/factory_girl/decorator/invocation_tracker.rb
ffactory_girl-4.8.1 lib/factory_girl/decorator/invocation_tracker.rb
factory_girl-4.8.1 lib/factory_girl/decorator/invocation_tracker.rb
enju_leaf-1.2.1 vendor/bundle/ruby/2.3/gems/factory_girl-4.8.0/lib/factory_girl/decorator/invocation_tracker.rb
factory_girl-4.8.0 lib/factory_girl/decorator/invocation_tracker.rb
ish_lib_manager-0.0.1 test/dummy/vendor/bundle/ruby/2.3.0/gems/factory_girl-4.7.0/lib/factory_girl/decorator/invocation_tracker.rb
factory_girl-4.7.0 lib/factory_girl/decorator/invocation_tracker.rb
opal-factory_girl-4.5.0.3 factory_girl/lib/factory_girl/decorator/invocation_tracker.rb
sc_core-0.0.7 test/dummy/vendor/bundle/ruby/2.2.0/gems/factory_girl-4.5.0/lib/factory_girl/decorator/invocation_tracker.rb
solidus_backend-1.0.0.pre3 vendor/bundle/gems/factory_girl-4.5.0/lib/factory_girl/decorator/invocation_tracker.rb
solidus_backend-1.0.0.pre2 vendor/bundle/gems/factory_girl-4.5.0/lib/factory_girl/decorator/invocation_tracker.rb
solidus_backend-1.0.0.pre vendor/bundle/gems/factory_girl-4.5.0/lib/factory_girl/decorator/invocation_tracker.rb
apl-library-0.0.90 vendor/bundle/ruby/1.9.1/gems/factory_girl-4.4.0/lib/factory_girl/decorator/invocation_tracker.rb
apl-library-0.0.90 vendor/bundle/ruby/2.1.0/gems/factory_girl-4.4.0/lib/factory_girl/decorator/invocation_tracker.rb
apl-library-0.0.90 vendor/bundle/ruby/2.1.0/gems/apl-library-0.0.90/vendor/bundle/ruby/2.1.0/gems/factory_girl-4.4.0/lib/factory_girl/decorator/invocation_tracker.rb
apl-library-0.0.90 vendor/bundle/ruby/2.1.0/gems/apl-library-0.0.90/vendor/bundle/ruby/1.9.1/gems/factory_girl-4.4.0/lib/factory_girl/decorator/invocation_tracker.rb
factory_girl-4.5.0 lib/factory_girl/decorator/invocation_tracker.rb
factory_girl-4.4.0 lib/factory_girl/decorator/invocation_tracker.rb
factory_girl-4.3.0 lib/factory_girl/decorator/invocation_tracker.rb