appbundler 0.13.2 → 0.13.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/lib/appbundler/app.rb +6 -0
- data/lib/appbundler/version.rb +1 -1
- data/spec/appbundler/app_spec.rb +6 -0
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b358a8a633dd6341cf56809d02b4c99ca7d78db88813e36ab385d24f861be8e0
|
4
|
+
data.tar.gz: 842dec2877ea932c7da9c5c849abb822f33a9eba10049a11d2089db42d3239ca
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a80ca5d2b58325a163f433b70b71ce81f3008513ce72faa6956ab1c32783bfddc377e9fedc9644dcc0392723b264697392d48cb072404d8ff3257fd0ff2c45fd
|
7
|
+
data.tar.gz: 4cf2163f2b0aaefbb5495c08d90da311c39dcb29216fc7ac1eb0f7e0f66595d3145a21f40abb9a968091731c27ca09c0f893e13b5cb787da7b69b7e31dafa547
|
data/lib/appbundler/app.rb
CHANGED
@@ -289,6 +289,12 @@ module Appbundler
|
|
289
289
|
<<~EOS
|
290
290
|
require "rubygems"
|
291
291
|
|
292
|
+
# this works around OpenSSL FIPS fingerprint matching issue where
|
293
|
+
# it expects to be loaded in image base known at compile time. We
|
294
|
+
# load OpenSSL early so that the shared library gets loaded in its
|
295
|
+
# preferred image base address
|
296
|
+
require "openssl"
|
297
|
+
|
292
298
|
begin
|
293
299
|
# this works around rubygems/rubygems#2196 and can be removed in rubygems > 2.7.6
|
294
300
|
require "rubygems/bundler_version_finder"
|
data/lib/appbundler/version.rb
CHANGED
data/spec/appbundler/app_spec.rb
CHANGED
@@ -120,6 +120,12 @@ describe Appbundler do
|
|
120
120
|
expected = <<~EOS
|
121
121
|
require "rubygems"
|
122
122
|
|
123
|
+
# this works around OpenSSL FIPS fingerprint matching issue where
|
124
|
+
# it expects to be loaded in image base known at compile time. We
|
125
|
+
# load OpenSSL early so that the shared library gets loaded in its
|
126
|
+
# preferred image base address
|
127
|
+
require "openssl"
|
128
|
+
|
123
129
|
begin
|
124
130
|
# this works around rubygems/rubygems#2196 and can be removed in rubygems > 2.7.6
|
125
131
|
require "rubygems/bundler_version_finder"
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: appbundler
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.13.
|
4
|
+
version: 0.13.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Chef Software, Inc.
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2021-06-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: mixlib-shellout
|
@@ -97,7 +97,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
97
97
|
- !ruby/object:Gem::Version
|
98
98
|
version: '0'
|
99
99
|
requirements: []
|
100
|
-
rubygems_version: 3.
|
100
|
+
rubygems_version: 3.1.4
|
101
101
|
signing_key:
|
102
102
|
specification_version: 4
|
103
103
|
summary: Extracts a dependency solution from bundler's Gemfile.lock to speed gem activation
|