Sha256: a4bf1bc107b0bac9b40197192fe9aa80a5e5c97e31b76411e0238b5f71b31536
Contents?: true
Size: 468 Bytes
Versions: 30
Compression:
Stored size: 468 Bytes
Contents
# frozen_string_literal: true ## # This represents a vendored source that is similar to an installed gem. class Gem::Source::Vendor < Gem::Source::Installed ## # Creates a new Vendor source for a gem that was unpacked at +path+. def initialize path @uri = path end def <=> other case other when Gem::Source::Lock then -1 when Gem::Source::Vendor then 0 when Gem::Source then 1 else nil end end end
Version data entries
30 entries across 30 versions & 2 rubygems