This module contains various utility methods as module methods.
Class Methods
dev
View on GitHub
# File tmp/rubies/ruby-master/lib/rubygems/util.rb, line 89
def self.correct_for_windows_path(path)
if path[0].chr == "/" && path[1].chr.match?(/[a-z]/i) && path[2].chr == ":"
path[1..-1]
else
path
end
end
Corrects path (usually returned by ‘Gem::URI.parse().path` on Windows), that comes with a leading slash.
dev
View on GitHub
# File tmp/rubies/ruby-master/lib/rubygems/util.rb, line 81
def self.glob_files_in_dir(glob, base_path)
Dir.glob(glob, base: base_path).map! {|f| File.expand_path(f, base_path) }
end
Globs for files matching pattern inside of directory, returning absolute paths to the matching files.
dev
View on GitHub
# File tmp/rubies/ruby-master/lib/rubygems/util.rb, line 10
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
Zlib::GzipReader wrapper that unzips data.
dev
View on GitHub
# File tmp/rubies/ruby-master/lib/rubygems/util.rb, line 29
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
Zlib::GzipWriter wrapper that zips data.
dev
View on GitHub
# File tmp/rubies/ruby-master/lib/rubygems/util.rb, line 45
def self.inflate(data)
require "zlib"
Zlib::Inflate.inflate data
end
A Zlib::Inflate#inflate wrapper
dev
View on GitHub
# File tmp/rubies/ruby-master/lib/rubygems/util.rb, line 53
def self.popen(*command)
IO.popen command, &:read
end
This calls IO.popen and reads the result
dev
View on GitHub
# File tmp/rubies/ruby-master/lib/rubygems/util.rb, line 60
def self.traverse_parents(directory, &block)
return enum_for __method__, directory unless block_given?
here = File.expand_path directory
loop do
begin
Dir.chdir here, &block
rescue StandardError
Errno::EACCES
end
new_here = File.expand_path("..", here)
return if new_here == here # toplevel
here = new_here
end
end
Enumerates the parents of directory.