jets-rails 1.0.0 → 1.0.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 +4 -4
- data/CHANGELOG.md +7 -0
- data/lib/jets/rails/job/queue/url.rb +17 -4
- data/lib/jets/rails/version.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bcb437fe35d6afd12777e624162887614d2cca7da551d17897175d490c639178
|
4
|
+
data.tar.gz: 7f40b923cdfcf86d790c413018fbe616b0273aa597619322a771b3a3164de3bd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1301a0fbb86830da29abf6e02a6a0fc8f21aa85dfb2a3b959ae4cb81ea707a6711f9b9b8fc923a255c691c656108031ec309da2a35fffe5d066deb5891cf1c47
|
7
|
+
data.tar.gz: f000b9c1fd5eadb96d17a45e00668dba997f7e8f72505d009fd45fa38dd77a3fc4f6e168887e5ecf7514fcf4220611c5d1f241c4d9618ec4aad1395a5a570a42
|
data/CHANGELOG.md
CHANGED
@@ -3,6 +3,13 @@
|
|
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
|
+
## [1.0.2] - 2024-05-27
|
7
|
+
- [#12](https://github.com/rubyonjets/jets-rails/pull/12) fix queue_url lookup when local
|
8
|
+
|
9
|
+
## [1.0.1] - 2024-05-21
|
10
|
+
- [#11](https://github.com/rubyonjets/jets-rails/pull/11) reduce rails requirement to => 6.1
|
11
|
+
- rm and gitignore Gemfile.lock
|
12
|
+
|
6
13
|
## [1.0.0] - 2024-05-20
|
7
14
|
|
8
15
|
* jets 6 plugin: activejob jets_job adapter, engine
|
@@ -4,13 +4,26 @@ class Jets::Rails::Job::Queue
|
|
4
4
|
extend Memoist
|
5
5
|
|
6
6
|
def queue_url
|
7
|
-
# JETS_JOB_QUEUE_URL
|
8
|
-
# to avoid the API call to retrieve the queue_url
|
7
|
+
# On AWS Lambda JETS_JOB_QUEUE_URL will be set
|
8
|
+
# It must be set when on AWS to avoid the API call to retrieve the queue_url
|
9
9
|
return ENV["JETS_JOB_QUEUE_URL"] if ENV["JETS_JOB_QUEUE_URL"]
|
10
|
+
|
11
|
+
# Locally when JETS_JOB_QUEUE_URL will try getting the latest release from API
|
10
12
|
# 1. can be nil
|
11
13
|
# 2. can raise NotFound error
|
12
|
-
|
13
|
-
|
14
|
+
begin
|
15
|
+
resp = Jets::Api::Release.retrieve("latest")
|
16
|
+
endpoint = resp.endpoints.find { |x| x["name"] == "queue_url" }
|
17
|
+
endpoint&.url
|
18
|
+
rescue Jets::Api::Error::NotFound => e
|
19
|
+
puts "WARN: Unable to get queue url from API: #{e.message}".color(:yellow)
|
20
|
+
puts <<~EOL
|
21
|
+
INFO: You can set JETS_JOB_QUEUE_URL in your environment to avoid this API call.
|
22
|
+
Locally, jets will try to get the latest release from the API to get the queue_url.
|
23
|
+
This will only work if the stack has been deployed successfully.
|
24
|
+
EOL
|
25
|
+
raise
|
26
|
+
end
|
14
27
|
end
|
15
28
|
memoize :queue_url
|
16
29
|
end
|
data/lib/jets/rails/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jets-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tung Nguyen
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-05-
|
11
|
+
date: 2024-05-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|
@@ -72,14 +72,14 @@ dependencies:
|
|
72
72
|
requirements:
|
73
73
|
- - ">="
|
74
74
|
- !ruby/object:Gem::Version
|
75
|
-
version: '
|
75
|
+
version: '6.1'
|
76
76
|
type: :runtime
|
77
77
|
prerelease: false
|
78
78
|
version_requirements: !ruby/object:Gem::Requirement
|
79
79
|
requirements:
|
80
80
|
- - ">="
|
81
81
|
- !ruby/object:Gem::Version
|
82
|
-
version: '
|
82
|
+
version: '6.1'
|
83
83
|
- !ruby/object:Gem::Dependency
|
84
84
|
name: rainbow
|
85
85
|
requirement: !ruby/object:Gem::Requirement
|
@@ -149,7 +149,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
149
149
|
- !ruby/object:Gem::Version
|
150
150
|
version: '0'
|
151
151
|
requirements: []
|
152
|
-
rubygems_version: 3.
|
152
|
+
rubygems_version: 3.5.10
|
153
153
|
signing_key:
|
154
154
|
specification_version: 4
|
155
155
|
summary: Jets Rails Support
|