module Bundler::Molinillo::Delegates::ResolutionState
Delegates
all {Bundler::Molinillo::ResolutionState} methods to a ‘#state` property.
Public Instance Methods
activated()
click to toggle source
(see Bundler::Molinillo::ResolutionState#activated)
# File bundler/vendor/molinillo/lib/molinillo/delegates/resolution_state.rb, line 21 def activated current_state = state || Bundler::Molinillo::ResolutionState.empty current_state.activated end
conflicts()
click to toggle source
(see Bundler::Molinillo::ResolutionState#conflicts)
# File bundler/vendor/molinillo/lib/molinillo/delegates/resolution_state.rb, line 45 def conflicts current_state = state || Bundler::Molinillo::ResolutionState.empty current_state.conflicts end
depth()
click to toggle source
(see Bundler::Molinillo::ResolutionState#depth)
# File bundler/vendor/molinillo/lib/molinillo/delegates/resolution_state.rb, line 39 def depth current_state = state || Bundler::Molinillo::ResolutionState.empty current_state.depth end
name()
click to toggle source
(see Bundler::Molinillo::ResolutionState#name)
# File bundler/vendor/molinillo/lib/molinillo/delegates/resolution_state.rb, line 9 def name current_state = state || Bundler::Molinillo::ResolutionState.empty current_state.name end
possibilities()
click to toggle source
(see Bundler::Molinillo::ResolutionState#possibilities)
# File bundler/vendor/molinillo/lib/molinillo/delegates/resolution_state.rb, line 33 def possibilities current_state = state || Bundler::Molinillo::ResolutionState.empty current_state.possibilities end
requirement()
click to toggle source
(see Bundler::Molinillo::ResolutionState#requirement)
# File bundler/vendor/molinillo/lib/molinillo/delegates/resolution_state.rb, line 27 def requirement current_state = state || Bundler::Molinillo::ResolutionState.empty current_state.requirement end
requirements()
click to toggle source
(see Bundler::Molinillo::ResolutionState#requirements)
# File bundler/vendor/molinillo/lib/molinillo/delegates/resolution_state.rb, line 15 def requirements current_state = state || Bundler::Molinillo::ResolutionState.empty current_state.requirements end
unused_unwind_options()
click to toggle source
(see Bundler::Molinillo::ResolutionState#unused_unwind_options)
# File bundler/vendor/molinillo/lib/molinillo/delegates/resolution_state.rb, line 51 def unused_unwind_options current_state = state || Bundler::Molinillo::ResolutionState.empty current_state.unused_unwind_options end