Method not available on this version
This method is only available on newer versions.
The first available version (v2_6_3) is shown here.
pop_possibility_state()
public
Removes a possibility from `self` @return [PossibilityState]
a state with a single possibility,
the possibility that was removed from `self`
# File lib/bundler/vendor/molinillo/lib/molinillo/state.rb, line 38
def pop_possibility_state
PossibilityState.new(
name,
requirements.dup,
activated,
requirement,
[possibilities.pop],
depth + 1,
conflicts.dup,
unused_unwind_options.dup
).tap do |state|
state.activated.tag(state)
end
end