Class: Gem::Resolver::Molinillo::ResolutionState

Inherits:
Struct
  • Object
show all
Defined in:
lib/rubygems/resolver/molinillo/lib/molinillo/state.rb,
lib/rubygems/resolver/molinillo/lib/molinillo/state.rb

Overview

A state that a Resolution can be in

Direct Known Subclasses

DependencyState, PossibilityState

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#activatedDependencyGraph

Returns the current value of activated.

Returns:



11
12
13
# File 'lib/rubygems/resolver/molinillo/lib/molinillo/state.rb', line 11

def activated
  @activated
end

#conflictsSet<Object>

Returns the current value of conflicts.

Returns:

  • (Set<Object>)

    the current value of conflicts



11
12
13
# File 'lib/rubygems/resolver/molinillo/lib/molinillo/state.rb', line 11

def conflicts
  @conflicts
end

#depthInteger

Returns the current value of depth.

Returns:

  • (Integer)

    the current value of depth



11
12
13
# File 'lib/rubygems/resolver/molinillo/lib/molinillo/state.rb', line 11

def depth
  @depth
end

#nameString

Returns the current value of name.

Returns:

  • (String)

    the current value of name



11
12
13
# File 'lib/rubygems/resolver/molinillo/lib/molinillo/state.rb', line 11

def name
  @name
end

#possibilitiesObject

Returns the value of attribute possibilities

Returns:

  • (Object)

    the current value of possibilities



11
12
13
# File 'lib/rubygems/resolver/molinillo/lib/molinillo/state.rb', line 11

def possibilities
  @possibilities
end

#possibilityObject

Returns the current value of possibility.

Returns:

  • (Object)

    the current value of possibility



21
22
23
# File 'lib/rubygems/resolver/molinillo/lib/molinillo/state.rb', line 21

def possibility
  @possibility
end

#requirementObject

Returns the current value of requirement.

Returns:

  • (Object)

    the current value of requirement



11
12
13
# File 'lib/rubygems/resolver/molinillo/lib/molinillo/state.rb', line 11

def requirement
  @requirement
end

#requirementsArray<Object>

Returns the current value of requirements.

Returns:

  • (Array<Object>)

    the current value of requirements



11
12
13
# File 'lib/rubygems/resolver/molinillo/lib/molinillo/state.rb', line 11

def requirements
  @requirements
end

Class Method Details

.emptyResolutionState

Returns an empty resolution state

Returns:



24
25
26
# File 'lib/rubygems/resolver/molinillo/lib/molinillo/state.rb', line 24

def self.empty
  new(nil, [], DependencyGraph.new, nil, nil, 0, Set.new)
end