blob: 86a530bffd9c1069946b1fd7e3f1a35fe2bd7f7a (
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
|
#!/usr/bin/env ruby
gem_home = Gem.paths.home
puts "fixing bundle installed gems in #{gem_home}"
# Install gems from git repos. This makes the assumption that there is a <gem_name>.gemspec and
# you can simply gem build + gem install the resulting gem, so nothing fancy. This does not use
# rake install since we need --conservative --minimal-deps in order to not install duplicate gems.
#
Dir["#{gem_home}/bundler/gems/*"].each do |gempath|
matches = File.basename(gempath).match(/.*-[A-Fa-f0-9]{12}/)
next unless matches
gem_name = File.basename(Dir["#{gempath}/*.gemspec"].first, ".gemspec")
# FIXME: should strip any valid ruby platform off of the gem_name if it matches
next unless gem_name
# FIXME: should omit the gem which is in the current directory and not hard code chef
next if %w{chef chef-universal-mingw32}.include?(gem_name)
puts "re-installing #{gem_name}..."
Dir.chdir(gempath) do
system("gem build #{gem_name}.gemspec") or raise "gem build failed"
system("gem install #{gem_name}*.gem --conservative --minimal-deps --no-document") or raise "gem install failed"
end
end
|