serverlessgems 0.1.1 → 0.1.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +3 -0
- data/lib/jets/gems/check.rb +2 -2
- data/lib/jets/gems/version.rb +1 -1
- 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: 169f172e979f4c558c87169677b011437ebdcacf5b650f0ea6a4e66f0612d704
|
4
|
+
data.tar.gz: 9e65dba325d5392404a9997cae87a5ba850697c06475a7beafa47da3a949744b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7750adc6ef3c215e37d705b71aa164fdd13ba10bec5045b29f49b9ab0ddcb85113c62c412cd69071d95278f8ae419c075f22c543a297aa18a8d13129ab7a9dd9
|
7
|
+
data.tar.gz: 522378c0c6d91eb8b74cad83f126ad3fb20dd8b7e73c4220604eb11fa77133ee0f0a4b7a8499a1b91014b266ce6a5b9b5d86b7691c5ebcacfbe7dae58261bc09
|
data/CHANGELOG.md
CHANGED
@@ -3,6 +3,9 @@
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
4
4
|
This project *loosely tries* to adhere to [Semantic Versioning](http://semver.org/).
|
5
5
|
|
6
|
+
## [0.1.2] - 2021-01-12
|
7
|
+
- [#2](https://github.com/boltops-tools/serverlessgems/pull/2) fix other_compiled_gems Jets.build_root
|
8
|
+
|
6
9
|
## [0.1.1] - 2021-01-12
|
7
10
|
- [#1](https://github.com/boltops-tools/serverlessgems/pull/1) fix native gem detection
|
8
11
|
|
data/lib/jets/gems/check.rb
CHANGED
@@ -22,7 +22,7 @@ module Jets::Gems
|
|
22
22
|
|
23
23
|
# Checks whether the gem is found at the serverlessgems source.
|
24
24
|
def run(exit_early: false)
|
25
|
-
puts "Checking projects gems for binary
|
25
|
+
puts "Checking projects gems for binary serverlessgems..."
|
26
26
|
compiled_gems.each do |gem_name|
|
27
27
|
puts "Checking #{gem_name}..." if @options[:cli]
|
28
28
|
exist = Jets::Gems::Exist.new
|
@@ -148,7 +148,7 @@ EOL
|
|
148
148
|
# /tmp/jets/demo/stage/opt/ruby/gems/2.7.0/gems/nokogiri-1.11.1-x86_64-linux
|
149
149
|
#
|
150
150
|
def other_compiled_gems
|
151
|
-
paths = Dir.glob("/
|
151
|
+
paths = Dir.glob("#{Jets.build_root}/stage/opt/ruby/gems/#{Jets::Gems.ruby_folder}/gems/*{-darwin,-linux}")
|
152
152
|
paths.map { |p| File.basename(p).sub(/-x\d+.*-(darwin|linux)/,'') }
|
153
153
|
end
|
154
154
|
|
data/lib/jets/gems/version.rb
CHANGED