Module: Gem::Util

Extended by:
Deprecate
Defined in:
lib/rubygems/util.rb

Overview

This module contains various utility methods as module methods.

Class Method Summary collapse

Methods included from Deprecate

deprecate, next_rubygems_major_version, rubygems_deprecate, rubygems_deprecate_command, skip, skip=, skip_during

Class Method Details

.correct_for_windows_path(path) ⇒ Object

Corrects path (usually returned by ‘URI.parse().path` on Windows), that comes with a leading slash.



111
112
113
114
115
116
117
# File 'lib/rubygems/util.rb', line 111

def self.correct_for_windows_path(path)
  if path[0].chr == '/' && path[1].chr =~ /[a-z]/i && path[2].chr == ':'
    path[1..-1]
  else
    path
  end
end

.glob_files_in_dir(glob, base_path) ⇒ Object

Globs for files matching pattern inside of directory, returning absolute paths to the matching files.



99
100
101
102
103
104
105
# File 'lib/rubygems/util.rb', line 99

def self.glob_files_in_dir(glob, base_path)
  if RUBY_VERSION >= "2.5"
    Dir.glob(glob, base: base_path).map! {|f| File.expand_path(f, base_path) }
  else
    Dir.glob(File.expand_path(glob, base_path))
  end
end

.gunzip(data) ⇒ Object

Zlib::GzipReader wrapper that unzips data.



12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# 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) ⇒ Object

Zlib::GzipWriter wrapper that zips data.



31
32
33
34
35
36
37
38
39
40
41
42
# 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) ⇒ Object

A Zlib::Inflate#inflate wrapper



47
48
49
50
# File 'lib/rubygems/util.rb', line 47

def self.inflate(data)
  require 'zlib'
  Zlib::Inflate.inflate data
end

.popen(*command) ⇒ Object

This calls IO.popen and reads the result



55
56
57
# File 'lib/rubygems/util.rb', line 55

def self.popen(*command)
  IO.popen command, &:read
end

.silent_system(*command) ⇒ Object

Invokes system, but silences all output.



62
63
64
65
66
67
68
69
70
71
# 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) ⇒ Object

Enumerates the parents of directory.



82
83
84
85
86
87
88
89
90
91
92
93
# File 'lib/rubygems/util.rb', line 82

def self.traverse_parents(directory, &block)
  return enum_for __method__, directory unless block_given?

  here = File.expand_path directory
  loop do
    Dir.chdir here, &block rescue Errno::EACCES

    new_here = File.expand_path('..', here)
    return if new_here == here # toplevel
    here = new_here
  end
end