bundler-integrity 1.0.8 → 1.0.9
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/bundler-integrity +5 -2
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 836849df2fe80a5ccd42eba6681d4afd49dbff2eefa401638b0c024f8edb76e2
|
4
|
+
data.tar.gz: c77e5afe962de2edbee1d27bfe065ef9b227647fc5ca31b58dd988118ce3d475
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4e6c5c4b0e723a0077da13f61f8f34922ec4bb7350e47f7138fd2f0a76a7fac76724b2f3393cd6b6c15eecc7db5e7968abf95aaac8a7523ae20de7c2dd9ca3bc
|
7
|
+
data.tar.gz: 005bb51cefb32508dc56ccd9a1c94b5d51cacf5b9375ec12b4971fdd056ccb90aa454375b2773c2c27d36b5fe5404bb098b2fa851c925c5798b1670aa71031f9
|
data/bin/bundler-integrity
CHANGED
@@ -57,7 +57,10 @@ deps.specs.each do |spec|
|
|
57
57
|
version.fetch('platform') == spec.platform.to_s
|
58
58
|
end
|
59
59
|
|
60
|
-
version
|
60
|
+
unless version
|
61
|
+
puts "\033[0;33m[WARN]\033[0m #{full_name} version not found in the RubyGems. Maybe yanked or private with a RubyGems placeholder?"
|
62
|
+
next
|
63
|
+
end
|
61
64
|
|
62
65
|
if PRINT_EXPORT
|
63
66
|
puts "#{version.fetch('sha')} #{full_name}"
|
@@ -67,7 +70,7 @@ deps.specs.each do |spec|
|
|
67
70
|
.select { |path| File.exist?(path) }
|
68
71
|
|
69
72
|
if candidates.empty?
|
70
|
-
puts "\033[0;33m[WARN]\033[0m #{full_name} was not found in cache locations
|
73
|
+
puts "\033[0;33m[WARN]\033[0m #{full_name} was not found in cache locations. Maybe it is a stdlib gem?"
|
71
74
|
next
|
72
75
|
end
|
73
76
|
|