-
Notifications
You must be signed in to change notification settings - Fork 197
/
Rakefile
33 lines (25 loc) · 943 Bytes
/
Rakefile
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
# frozen_string_literal: true
require 'bundler/setup'
require 'rake'
require 'bundler/gem_tasks'
require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new(:spec)
task default: 'spec'
task :update_gemfiles do
require 'pry'
Dir.glob('gemfiles/*.gemfile').each do |gemfile|
puts "Updating #{gemfile}...\n\n"
ENV['BUNDLE_GEMFILE'] = gemfile
puts `bundle install --gemfile=#{gemfile} --no-cache`
puts `bundle update --gemfile=#{gemfile}`
lockfile = "#{gemfile}.lock"
raise(StandardError, "Expected #{lockfile} to exist.") unless File.exist?(lockfile)
parsed_lockfile = Bundler::LockfileParser.new(Bundler.read_file(lockfile))
# Ensure lockfile has x86_64-linux
if parsed_lockfile.platforms.map(&:to_s).none? { |p| p == 'x86_64-linux' }
puts "Adding platform x86_64-linux to #{lockfile}\n\n"
puts `bundle lock --add-platform x86_64-linux --gemfile=#{gemfile}`
end
puts ''
end
end