blob: 539e38f2ff8c2caa0ff7dd4a77849086ee399660 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
# frozen_string_literal: true
require "bundler/cli/common"
module Bundler
class CLI::Pristine
def run
::Bundler.load.specs.each do |spec|
gem_name = "#{spec.name} (#{spec.version}#{spec.git_version})"
if spec.source.is_a?(Source::Path)
::Bundler.ui.warn("Cannot pristine #{gem_name} Gem is sourced from path.")
next
end
if spec.source.is_a?(Source::Rubygems)
cached_gem = spec.cache_file
unless File.exists?(cached_gem)
::Bundler.ui.error("Failed to pristine #{gem_name}. Cached gem #{cached_gem} does not exist.")
next
end
installer = Gem::Installer.at(cached_gem,
:wrappers => true,
:force => true,
:install_dir => spec.base_dir,
:build_args => spec.build_args)
installer.install
elsif spec.source.is_a?(Source::Git)
end
end
end
end
end
|