Sha256: b7932f2788093d79f42718376a13f0864837c21d8b63bc76df543c7c987a85cb
Contents?: true
Size: 1.01 KB
Versions: 17
Compression:
Stored size: 1.01 KB
Contents
require 'scorpion/dependency' module Scorpion class Dependency class CapturedDependency < Scorpion::Dependency extend Forwardable # ============================================================================ # @!group Attributes # # @!attribute # @return [Object] the instance that was captured. attr_reader :instance # @!attribute # @return [Scorpion::Dependency] the actual dependency to hunt. Used to fetch the # single {#instance}. attr_reader :specific_dependency private :specific_dependency delegate [:contract,:traits,:satisfies?] => :specific_dependency # # @!endgroup Attributes def initialize( specific_dependency ) @specific_dependency = specific_dependency end # @see Dependency#fetch def fetch( hunt ) @instance ||= specific_dependency.fetch( hunt ) end # @see Dependency#release def release @instance = nil end end end end
Version data entries
17 entries across 17 versions & 1 rubygems