serverlessgems 0.2.1 → 0.3.0

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: 1bc39f373e2ec3dd463cdb015b038d91e21fef1bb903e3e5145786dde7062117
4
- data.tar.gz: 6cdfc0f15004cd366fa7ceb7236a3bfdfcee966afdabf4bcf129da06023669b6
3
+ metadata.gz: 85ccd616399d9f335e5aadff26a38a4f1e5584a6f7ceefb433e4772ea2d4e0e9
4
+ data.tar.gz: 01c5f24ee034758ef85b109a584c63c738dd765a1eada4be8498986bc8be7a7d
5
5
  SHA512:
6
- metadata.gz: 96e938a4f91820f34553746cdbd468cc3f5d6fe962f949b180fa9e3a3b905dd50fa29e0d412e6e55f203d287ba6c9eeaaddc6ff899fb86e7bd76d540c21dc08c
7
- data.tar.gz: be87aee1edd695c7fb005bf204a7bc57a640dd198e6047d14f1c03fb46e262a61d2007ce3b1cec1dcfd607ed25e5562bfec6da7e3491d83e867c9f29c9d78b7f
6
+ metadata.gz: 0cd02b6cecda18ab6bc4650470269247618a849aa7159348d759294bf64b4756f2095142e051f7713faca586185f4d4dccb3da5e20750c5273f127b366ca1ed0
7
+ data.tar.gz: 204e73b60d8fadcf7c12ba441ca858d981ee75d5a084c64b4d54469bef701c79acc24b6d2d9dd7fdf8b88791e7a97d7f119c9243e2b0a274f4bb751b59ef8dd1
data/CHANGELOG.md CHANGED
@@ -3,6 +3,10 @@
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.3.0] - 2023-06-04
7
+ - download gems to different ruby folder: avoid conflicts when switching ruby version
8
+ - update missing gems messaging
9
+
6
10
  ## [0.2.1] - 2023-02-07
7
11
  - [#7](https://github.com/boltops-tools/serverlessgems/pull/7) download retry for 403 forbidden
8
12
 
@@ -63,6 +63,8 @@ Jets is unable to build a deployment package that will work on AWS Lambda withou
63
63
  * Create your own custom layer with the gem: http://rubyonjets.com/docs/extras/custom-lambda-layers/
64
64
  <% if agree.yes? -%>
65
65
  * No need to report this to us, as we've already been notified.
66
+ * Usually, missing gems can be built within a few minutes.
67
+ * Some gems may take days or even longer.
66
68
  <% elsif agree.no? -%>
67
69
  * You have choosen not to report data to serverlessgems so we will not be notified about these missing gems.
68
70
  * You can edit ~/.jets/agree to change this.
@@ -8,8 +8,8 @@ module Jets::Gems::Extract
8
8
  def initialize(name, options={})
9
9
  @name = name
10
10
  @options = options
11
-
12
- @downloads_root = options[:downloads_root] || "/tmp/jets/#{Jets.config.project_name}/serverlessgems"
11
+ ruby_folder = Jets::Gems.ruby_folder
12
+ @downloads_root = options[:downloads_root] || "/tmp/jets/#{Jets.config.project_name}/serverlessgems/#{ruby_folder}"
13
13
  end
14
14
 
15
15
  def clean_downloads(folder)
@@ -1,5 +1,5 @@
1
1
  module Jets
2
2
  module Gems
3
- VERSION = "0.2.1"
3
+ VERSION = "0.3.0"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: serverlessgems
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1
4
+ version: 0.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tung Nguyen
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-02-07 00:00:00.000000000 Z
11
+ date: 2023-06-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: gems
@@ -94,7 +94,7 @@ dependencies:
94
94
  - - ">="
95
95
  - !ruby/object:Gem::Version
96
96
  version: '0'
97
- description:
97
+ description:
98
98
  email:
99
99
  - tongueroo@gmail.com
100
100
  executables: []
@@ -131,7 +131,7 @@ homepage: https://github.com/boltops-tools/serverlessgems
131
131
  licenses:
132
132
  - MIT
133
133
  metadata: {}
134
- post_install_message:
134
+ post_install_message:
135
135
  rdoc_options: []
136
136
  require_paths:
137
137
  - lib
@@ -146,8 +146,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
146
146
  - !ruby/object:Gem::Version
147
147
  version: '0'
148
148
  requirements: []
149
- rubygems_version: 3.3.26
150
- signing_key:
149
+ rubygems_version: 3.4.10
150
+ signing_key:
151
151
  specification_version: 4
152
152
  summary: Client Library works with Serverless Gems API for Jets Ruby Serverless Framework
153
153
  test_files: []