Beta Shell
v2.0 ยท web2.us.cloudlogin.co
[FM]
[CMD]
[PHP]
[DB]
[INFO]
[SEC]
File Manager
~
/
usr
/
share
/
rubygems
/
rubygems
/
resolver
/
molinillo
/
lib
/
molinillo
/
delegates
Upload
4 items
Name
Size
Perms
Modified
Actions
[ .. / .. ]
resolution_state.rb
1.68 KB
-rw-r--r--
2021-04-05 11:46:35
Edit
Del
specification_provider.rb
2.9 KB
-rw-r--r--
2021-04-05 11:46:35
Edit
Del
Editing: resolution_state.rb
(1.68 KB)
Path: /usr/share/rubygems/rubygems/resolver/molinillo/lib/molinillo/delegates/resolution_state.rb
Back
# frozen_string_literal: true module Gem::Resolver::Molinillo # @!visibility private module Delegates # Delegates all {Gem::Resolver::Molinillo::ResolutionState} methods to a `#state` property. module ResolutionState # (see Gem::Resolver::Molinillo::ResolutionState#name) def name current_state = state || Gem::Resolver::Molinillo::ResolutionState.empty current_state.name end # (see Gem::Resolver::Molinillo::ResolutionState#requirements) def requirements current_state = state || Gem::Resolver::Molinillo::ResolutionState.empty current_state.requirements end # (see Gem::Resolver::Molinillo::ResolutionState#activated) def activated current_state = state || Gem::Resolver::Molinillo::ResolutionState.empty current_state.activated end # (see Gem::Resolver::Molinillo::ResolutionState#requirement) def requirement current_state = state || Gem::Resolver::Molinillo::ResolutionState.empty current_state.requirement end # (see Gem::Resolver::Molinillo::ResolutionState#possibilities) def possibilities current_state = state || Gem::Resolver::Molinillo::ResolutionState.empty current_state.possibilities end # (see Gem::Resolver::Molinillo::ResolutionState#depth) def depth current_state = state || Gem::Resolver::Molinillo::ResolutionState.empty current_state.depth end # (see Gem::Resolver::Molinillo::ResolutionState#conflicts) def conflicts current_state = state || Gem::Resolver::Molinillo::ResolutionState.empty current_state.conflicts end end end end