class Gem::Installer::FakePackage
Attributes
Public Class Methods
# File lib/rubygems/installer.rb, line 118 def initialize(spec) @spec = spec end
Public Instance Methods
# File lib/rubygems/installer.rb, line 135 def copy_to(path) end
# File lib/rubygems/installer.rb, line 122 def extract_files(destination_dir, pattern = "*") FileUtils.mkdir_p destination_dir spec.files.each do |file| file = File.join destination_dir, file next if File.exist? file FileUtils.mkdir_p File.dirname(file) File.open file, "w" do |fp| fp.puts "# #{file}" end end end