Module: Gem::Util
Relationships & Source Files | |
Super Chains via Extension / Inclusion / Inheritance | |
Class Chain:
self,
Deprecate
|
|
Defined in: | lib/rubygems/util.rb |
Overview
This module contains various utility methods as module methods.
Class Method Summary
-
.correct_for_windows_path(path)
Corrects path (usually returned by
Gem::URI.parse().path
on Windows), that comes with a leading slash. -
.glob_files_in_dir(glob, base_path)
Globs for files matching
pattern
inside ofdirectory
, returning absolute paths to the matching files. -
.gunzip(data)
Zlib::GzipReader
wrapper that unzipsdata
. -
.gzip(data)
Zlib::GzipWriter
wrapper that zipsdata
. -
.inflate(data)
A
Zlib::Inflate#inflate
wrapper. -
.popen(*command)
This calls
IO.popen
and reads the result. -
.silent_system(*command)
Invokes system, but silences all output.
-
.traverse_parents(directory, &block)
Enumerates the parents of
directory
.
Deprecate
- Extended
deprecate | Simple deprecation method that deprecates |
rubygems_deprecate | Simple deprecation method that deprecates |
rubygems_deprecate_command | Deprecation method to deprecate Rubygems commands. |
skip_during | Temporarily turn off warnings. |
Class Method Details
.correct_for_windows_path(path)
Corrects Gem.path (usually returned by Gem::URI.parse().path
on Windows), that comes with a leading slash.
.glob_files_in_dir(glob, base_path)
Globs for files matching pattern
inside of directory
, returning absolute paths to the matching files.
# File 'lib/rubygems/util.rb', line 103
def self.glob_files_in_dir(glob, base_path) Dir.glob(glob, base: base_path).map! {|f| File. (f, base_path) } end
.gunzip(data)
Zlib::GzipReader
wrapper that unzips data
.
# File 'lib/rubygems/util.rb', line 12
def self.gunzip(data) require "zlib" require "stringio" data = StringIO.new(data, "r") gzip_reader = begin Zlib::GzipReader.new(data) rescue Zlib::GzipFile::Error => e raise e.class, e.inspect, e.backtrace end unzipped = gzip_reader.read unzipped.force_encoding Encoding::BINARY unzipped end
.gzip(data)
Zlib::GzipWriter
wrapper that zips data
.
# File 'lib/rubygems/util.rb', line 31
def self.gzip(data) require "zlib" require "stringio" zipped = StringIO.new(String.new, "w") zipped.set_encoding Encoding::BINARY Zlib::GzipWriter.wrap zipped do |io| io.write data end zipped.string end
.inflate(data)
A Zlib::Inflate#inflate
wrapper
# File 'lib/rubygems/util.rb', line 47
def self.inflate(data) require "zlib" Zlib::Inflate.inflate data end
.popen(*command)
This calls IO.popen
and reads the result
# File 'lib/rubygems/util.rb', line 55
def self.popen(*command) IO.popen command, &:read end
.silent_system(*command)
Invokes system, but silences all output.
# File 'lib/rubygems/util.rb', line 62
def self.silent_system(*command) opt = { out: IO::NULL, err: [:child, :out] } if Hash === command.last opt.update(command.last) cmds = command[0...-1] else cmds = command.dup end system(*(cmds << opt)) end
.traverse_parents(directory, &block)
Enumerates the parents of directory
.
# File 'lib/rubygems/util.rb', line 82
def self.traverse_parents(directory, &block) return enum_for __method__, directory unless block_given? here = File. directory loop do begin Dir.chdir here, &block rescue StandardError Errno::EACCES end new_here = File. ("..", here) return if new_here == here # toplevel here = new_here end end