autoproj 2.8.1 → 2.8.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6e6d1d36a0d083b3d1b2e36e03fc6cc30844ee81ff9e059fa5f02b56436256b3
4
- data.tar.gz: ed32703bbd7587d542efa5f046dbf94fb6457d0c8138b9e2314ef87a665c4573
3
+ metadata.gz: 1254fdb26e9589090bf68081006f181d779aea88b2e41d866d240571577d3206
4
+ data.tar.gz: d10d4df38231e95bddddef14255b6251a115ac6b75f6228ca77816d10298f1ad
5
5
  SHA512:
6
- metadata.gz: fd2e91fcd355e19b2cf9b1f0bedde1cf28ac0ba8aca1239eec23dfd45a848007a335efe6745a3948e2613a81f844b6778ed7a4bdb268b587ca2c45c2b64d7f0c
7
- data.tar.gz: 2ddd52ea6026339b5b3139e1b0d87d041fcef06c084338485e7a99ceda5d3a7b203b5741b50d14c22522cc2e6baa5afb9831844a21d5691d984b596c493ce957
6
+ metadata.gz: 33841beedafa7dd02fc64763a004d0326824c90ee0187895c4b8fefba7b7be615f61bc48decff52e9d63c0b5bb9cba9d671619bcdfe8b68482e7d395088e5e2b
7
+ data.tar.gz: 3bfacbe63c2d5f1f46a00dd1f2c82d79cd2ca8a64e0ba9a334651ca201a93f8f0c5f65786fdb224cce4c2b2c29a274b2f5cd3722dc0ce5d0bf5bb0a716b6dcb8
@@ -294,7 +294,7 @@ module Autoproj
294
294
  out: '/dev/null')
295
295
  return if !result
296
296
 
297
- bundler_path = File.join(gems_gem_home, 'bin', 'bundler')
297
+ bundler_path = File.join(gems_gem_home, 'bin', 'bundle')
298
298
  if File.exist?(bundler_path)
299
299
  bundler_path
300
300
  end
@@ -314,14 +314,14 @@ module Autoproj
314
314
  '--env-shebang', '--no-document', '--no-format-executable',
315
315
  '--clear-sources', '--source', gem_source,
316
316
  *local, "--bindir=#{File.join(gems_gem_home, 'bin')}",
317
- 'bundler', **redirection)
317
+ 'bundle', **redirection)
318
318
 
319
319
  if !result
320
320
  STDERR.puts "FATAL: failed to install bundler in #{gems_gem_home}"
321
321
  nil
322
322
  end
323
323
 
324
- bundler_path = File.join(gems_gem_home, 'bin', 'bundler')
324
+ bundler_path = File.join(gems_gem_home, 'bin', 'bundle')
325
325
  if File.exist?(bundler_path)
326
326
  bundler_path
327
327
  else
@@ -419,7 +419,7 @@ if defined?(Bundler)
419
419
  exec($0, *ARGV)
420
420
  end
421
421
  end
422
- ENV['BUNDLE_GEMFILE'] = '#{autoproj_gemfile_path}'
422
+ ENV['BUNDLE_GEMFILE'] ||= '#{autoproj_gemfile_path}'
423
423
  RESTART_BUNDLER
424
424
  script_lines.join
425
425
  end
@@ -294,7 +294,7 @@ module Autoproj
294
294
  out: '/dev/null')
295
295
  return if !result
296
296
 
297
- bundler_path = File.join(gems_gem_home, 'bin', 'bundler')
297
+ bundler_path = File.join(gems_gem_home, 'bin', 'bundle')
298
298
  if File.exist?(bundler_path)
299
299
  bundler_path
300
300
  end
@@ -314,14 +314,14 @@ module Autoproj
314
314
  '--env-shebang', '--no-document', '--no-format-executable',
315
315
  '--clear-sources', '--source', gem_source,
316
316
  *local, "--bindir=#{File.join(gems_gem_home, 'bin')}",
317
- 'bundler', **redirection)
317
+ 'bundle', **redirection)
318
318
 
319
319
  if !result
320
320
  STDERR.puts "FATAL: failed to install bundler in #{gems_gem_home}"
321
321
  nil
322
322
  end
323
323
 
324
- bundler_path = File.join(gems_gem_home, 'bin', 'bundler')
324
+ bundler_path = File.join(gems_gem_home, 'bin', 'bundle')
325
325
  if File.exist?(bundler_path)
326
326
  bundler_path
327
327
  else
@@ -419,7 +419,7 @@ if defined?(Bundler)
419
419
  exec($0, *ARGV)
420
420
  end
421
421
  end
422
- ENV['BUNDLE_GEMFILE'] = '#{autoproj_gemfile_path}'
422
+ ENV['BUNDLE_GEMFILE'] ||= '#{autoproj_gemfile_path}'
423
423
  RESTART_BUNDLER
424
424
  script_lines.join
425
425
  end
@@ -409,7 +409,7 @@ def self.shim_bundler(script_lines, ruby_executable, autoproj_gemfile_path, gems
409
409
  exec($0, *ARGV)
410
410
  end
411
411
  end
412
- ENV['BUNDLE_GEMFILE'] = '#{autoproj_gemfile_path}'
412
+ ENV['BUNDLE_GEMFILE'] ||= '#{autoproj_gemfile_path}'
413
413
  RESTART_BUNDLER
414
414
  script_lines.join
415
415
  end
@@ -1,3 +1,3 @@
1
1
  module Autoproj
2
- VERSION = "2.8.1"
2
+ VERSION = "2.8.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: autoproj
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.8.1
4
+ version: 2.8.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sylvain Joyeux