зеркало из https://github.com/github/ruby.git
19 строки
486 B
Ruby
Executable File
19 строки
486 B
Ruby
Executable File
require 'rubygems'
|
|
require 'rubygems/package'
|
|
|
|
def Gem.unpack(file, dir = nil)
|
|
policy = Gem::Security::LowSecurity
|
|
(policy = policy.dup).ui = Gem::SilentUI.new
|
|
pkg = Gem::Package.new(file)
|
|
pkg.security_policy = policy
|
|
spec = pkg.spec
|
|
target = spec.full_name
|
|
target = File.join(dir, target) if dir
|
|
pkg.extract_files target
|
|
spec_file = File.join(target, "#{spec.name}.gemspec")
|
|
open(spec_file, 'wb') do |f|
|
|
f.print spec.to_ruby
|
|
end
|
|
puts "Unpacked #{file}"
|
|
end
|