autoproj 2.8.3 → 2.8.4
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 +4 -4
- data/bin/autoproj_bootstrap +8 -0
- data/bin/autoproj_install +8 -0
- data/lib/autoproj/ops/install.rb +8 -0
- data/lib/autoproj/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 651f60fc325d3c89f2c228b21cba6fbb4e59f6ef265519c886cc902ea7b447c5
|
|
4
|
+
data.tar.gz: 6c5444bb162212e02591fc44103c590ebf32cd57e71ac404b126f7ff81464d21
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: eb567f162a65b45a85bfe6ec630cdc60dc47d599466a362f1af6f74cc887805273acd30e2bc91841c895fe2cef77422caba8ab44151aad7501757de8c78517eb
|
|
7
|
+
data.tar.gz: 43d29cde118d224707c4fed2b40662277a745a9a98a8e768f574d3cf83292afa6dac9aed427a8631f36068a81bd2bbf33f75d3fc1044608f7b3052f0beb32d98
|
data/bin/autoproj_bootstrap
CHANGED
|
@@ -413,6 +413,10 @@ module Autoproj
|
|
|
413
413
|
unless new_style_bundler_binstub?(script_lines)
|
|
414
414
|
|
|
415
415
|
script_lines.insert(1, <<-RESTART_BUNDLER)
|
|
416
|
+
#
|
|
417
|
+
# This file was generated by Bundler.
|
|
418
|
+
#
|
|
419
|
+
|
|
416
420
|
# Autoproj generated preamble
|
|
417
421
|
if defined?(Bundler)
|
|
418
422
|
Bundler.with_clean_env do
|
|
@@ -452,6 +456,10 @@ load Gem.bin_path('bundler', 'bundler')"
|
|
|
452
456
|
unless new_style
|
|
453
457
|
|
|
454
458
|
script_lines.insert(1, <<-AUTOPROJ_PREAMBLE)
|
|
459
|
+
#
|
|
460
|
+
# This file was generated by Bundler.
|
|
461
|
+
#
|
|
462
|
+
|
|
455
463
|
# Autoproj generated preamble, v1
|
|
456
464
|
if defined?(Bundler)
|
|
457
465
|
Bundler.with_clean_env do
|
data/bin/autoproj_install
CHANGED
|
@@ -413,6 +413,10 @@ module Autoproj
|
|
|
413
413
|
unless new_style_bundler_binstub?(script_lines)
|
|
414
414
|
|
|
415
415
|
script_lines.insert(1, <<-RESTART_BUNDLER)
|
|
416
|
+
#
|
|
417
|
+
# This file was generated by Bundler.
|
|
418
|
+
#
|
|
419
|
+
|
|
416
420
|
# Autoproj generated preamble
|
|
417
421
|
if defined?(Bundler)
|
|
418
422
|
Bundler.with_clean_env do
|
|
@@ -452,6 +456,10 @@ load Gem.bin_path('bundler', 'bundler')"
|
|
|
452
456
|
unless new_style
|
|
453
457
|
|
|
454
458
|
script_lines.insert(1, <<-AUTOPROJ_PREAMBLE)
|
|
459
|
+
#
|
|
460
|
+
# This file was generated by Bundler.
|
|
461
|
+
#
|
|
462
|
+
|
|
455
463
|
# Autoproj generated preamble, v1
|
|
456
464
|
if defined?(Bundler)
|
|
457
465
|
Bundler.with_clean_env do
|
data/lib/autoproj/ops/install.rb
CHANGED
|
@@ -403,6 +403,10 @@ def self.shim_bundler(script_lines, ruby_executable, autoproj_gemfile_path, gems
|
|
|
403
403
|
unless new_style_bundler_binstub?(script_lines)
|
|
404
404
|
|
|
405
405
|
script_lines.insert(1, <<-RESTART_BUNDLER)
|
|
406
|
+
#
|
|
407
|
+
# This file was generated by Bundler.
|
|
408
|
+
#
|
|
409
|
+
|
|
406
410
|
# Autoproj generated preamble
|
|
407
411
|
if defined?(Bundler)
|
|
408
412
|
Bundler.with_clean_env do
|
|
@@ -442,6 +446,10 @@ def self.shim_script(script_lines, ruby_executable, root_dir,
|
|
|
442
446
|
unless new_style
|
|
443
447
|
|
|
444
448
|
script_lines.insert(1, <<-AUTOPROJ_PREAMBLE)
|
|
449
|
+
#
|
|
450
|
+
# This file was generated by Bundler.
|
|
451
|
+
#
|
|
452
|
+
|
|
445
453
|
# Autoproj generated preamble, v1
|
|
446
454
|
if defined?(Bundler)
|
|
447
455
|
Bundler.with_clean_env do
|
data/lib/autoproj/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: autoproj
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.8.
|
|
4
|
+
version: 2.8.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Sylvain Joyeux
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-09-
|
|
11
|
+
date: 2018-09-04 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|