serverlessgems 0.1.1 → 0.1.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: 6756e479ba86b9b25e086d1779911039ce33279054f0ecc968174195dd0a20b5
4
- data.tar.gz: 6d447ad46909e821ead5bc87d8099783503f73b7635883b4699fcac945581711
3
+ metadata.gz: 169f172e979f4c558c87169677b011437ebdcacf5b650f0ea6a4e66f0612d704
4
+ data.tar.gz: 9e65dba325d5392404a9997cae87a5ba850697c06475a7beafa47da3a949744b
5
5
  SHA512:
6
- metadata.gz: 3b606e3d673fc0bceb0edfeac4010559714126cb1edf1506ce761dba5a7a88558a3a623e7cae94f591901aac00f01abd480a770a191ba6346e8ac740e30e21fb
7
- data.tar.gz: c35c1a8617de78772a415bed0c98ac52f94592b55848b1a0ba11cda0c746602e0b1f58cc471449ae17faf552d0835c3f440a4ab4331869ccc475ff0e810f532b
6
+ metadata.gz: 7750adc6ef3c215e37d705b71aa164fdd13ba10bec5045b29f49b9ab0ddcb85113c62c412cd69071d95278f8ae419c075f22c543a297aa18a8d13129ab7a9dd9
7
+ data.tar.gz: 522378c0c6d91eb8b74cad83f126ad3fb20dd8b7e73c4220604eb11fa77133ee0f0a4b7a8499a1b91014b266ce6a5b9b5d86b7691c5ebcacfbe7dae58261bc09
@@ -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
 
@@ -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 Lambda gems..."
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("/tmp/jets/demo/stage/opt/ruby/gems/#{Jets::Gems.ruby_folder}/gems/*{-darwin,-linux}")
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
 
@@ -1,5 +1,5 @@
1
1
  module Jets
2
2
  module Gems
3
- VERSION = "0.1.1"
3
+ VERSION = "0.1.2"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: serverlessgems
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tung Nguyen