Sha256: 6bbc7c58ebf37f8f62fc090c12710a61741fc3149f8b97332113c04162a69e54
Contents?: true
Size: 303 Bytes
Versions: 57
Compression:
Stored size: 303 Bytes
Contents
class Bundler::Thor class NestedContext def initialize @depth = 0 end def enter push yield ensure pop end def entered? @depth.positive? end private def push @depth += 1 end def pop @depth -= 1 end end end
Version data entries
57 entries across 57 versions & 3 rubygems