jets-rails 1.0.0 → 1.0.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 536f98adce430371ad8e7a31424b866b3ae44f99f45094485304ad8186e47979
4
- data.tar.gz: 3c843ab9189c8f85608fc7de03c94b9881055d852bc9404cbdfe85339f0455bd
3
+ metadata.gz: bcb437fe35d6afd12777e624162887614d2cca7da551d17897175d490c639178
4
+ data.tar.gz: 7f40b923cdfcf86d790c413018fbe616b0273aa597619322a771b3a3164de3bd
5
5
  SHA512:
6
- metadata.gz: 71aa7434ee9332a6a823875e1572569b2f0399a3110aa3a556e9c07e6bc6f3baab144845f47ecd5d850728e434c2e5fdb2830066a07462b730ede955d23eecef
7
- data.tar.gz: b16d8e88d3832a7e1bb492bc270b8c93a1a33511e9bfaa3f5067c328f622aabb3d48e8a0e3ea48956e944e7983fbf9b9cc8efefea93d3cd291ca8803e0fc816e
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 must be set when on AWS Lambda
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
- resp = Jets::Api::Release.retrieve("latest")
13
- resp.queue_url
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
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Jets
4
4
  module Rails
5
- VERSION = "1.0.0"
5
+ VERSION = "1.0.2"
6
6
  end
7
7
  end
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.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-20 00:00:00.000000000 Z
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: '7.0'
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: '7.0'
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.4.19
152
+ rubygems_version: 3.5.10
153
153
  signing_key:
154
154
  specification_version: 4
155
155
  summary: Jets Rails Support