![show/hide quicksearch [+]](../../../images/find.png)
Delegates all {Bundler::Molinillo::ResolutionState} methods to a `#state` property.
(see Bundler::Molinillo::ResolutionState#activated)
 
               # File bundler/vendor/molinillo/lib/molinillo/delegates/resolution_state.rb, line 20
def activated
  current_state = state || Bundler::Molinillo::ResolutionState.empty
  current_state.activated
end
             
            (see Bundler::Molinillo::ResolutionState#conflicts)
 
               # File bundler/vendor/molinillo/lib/molinillo/delegates/resolution_state.rb, line 44
def conflicts
  current_state = state || Bundler::Molinillo::ResolutionState.empty
  current_state.conflicts
end
             
            (see Bundler::Molinillo::ResolutionState#depth)
 
               # File bundler/vendor/molinillo/lib/molinillo/delegates/resolution_state.rb, line 38
def depth
  current_state = state || Bundler::Molinillo::ResolutionState.empty
  current_state.depth
end
             
            (see Bundler::Molinillo::ResolutionState#name)
 
               # File bundler/vendor/molinillo/lib/molinillo/delegates/resolution_state.rb, line 8
def name
  current_state = state || Bundler::Molinillo::ResolutionState.empty
  current_state.name
end
             
            (see Bundler::Molinillo::ResolutionState#possibilities)
 
               # File bundler/vendor/molinillo/lib/molinillo/delegates/resolution_state.rb, line 32
def possibilities
  current_state = state || Bundler::Molinillo::ResolutionState.empty
  current_state.possibilities
end
             
            (see Bundler::Molinillo::ResolutionState#requirement)
 
               # File bundler/vendor/molinillo/lib/molinillo/delegates/resolution_state.rb, line 26
def requirement
  current_state = state || Bundler::Molinillo::ResolutionState.empty
  current_state.requirement
end
             
            (see Bundler::Molinillo::ResolutionState#requirements)
 
               # File bundler/vendor/molinillo/lib/molinillo/delegates/resolution_state.rb, line 14
def requirements
  current_state = state || Bundler::Molinillo::ResolutionState.empty
  current_state.requirements
end
             
            (see Bundler::Molinillo::ResolutionState#unused_unwind_options)
 
               # File bundler/vendor/molinillo/lib/molinillo/delegates/resolution_state.rb, line 50
def unused_unwind_options
  current_state = state || Bundler::Molinillo::ResolutionState.empty
  current_state.unused_unwind_options
end