Sha256: 6526b6eb456dbfe9cad9b5d4b3bc55dce6e26891e511ba3fef4f8e9d4fed4ed5
Contents?: true
Size: 569 Bytes
Versions: 79
Compression:
Stored size: 569 Bytes
Contents
## # The primary source of gems is a file on disk, including all usages # internal to rubygems. # # This is a private class, do not depend on it directly. Instead, pass a path # object to `Gem::Package.new`. class Gem::Package::FileSource < Gem::Package::Source # :nodoc: all attr_reader :path def initialize path @path = path end def start @start ||= File.read path, 20 end def present? File.exist? path end def with_write_io &block open path, 'wb', &block end def with_read_io &block open path, 'rb', &block end end
Version data entries
79 entries across 51 versions & 4 rubygems