jets 1.8.11 → 1.8.12
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/.github/ISSUE_TEMPLATE/bug_report.md +10 -3
- data/CHANGELOG.md +5 -0
- data/lib/jets/rack_server.rb +1 -1
- data/lib/jets/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: aed5e254b55392628af22e3aee0bc23adfe7b78c4193ada008d00e6a3f8f3de1
|
|
4
|
+
data.tar.gz: ca6789659972a3a79871467d67be32269d625f0bc007adfeac3fa3a3d716b3ee
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2cf63559363acc1c230f4d4b725ee18fd70b9664edea31ec68d1d2939c849e3f6de1385361009d0bfbfccd69613883c855f207b03ffbe3fe0b3559cd080b7728
|
|
7
|
+
data.tar.gz: c1e4e0b6d3992fd37821e763a1dc5ce33eb230931ffaf77da19e1012dcea7e544b34efbdb6151615f6f5cf6dab5dfdeebf56626e724a7aa959ff5984bf1b427c
|
|
@@ -48,16 +48,23 @@ What is it you expected to happen? This should be a description of how the funct
|
|
|
48
48
|
|
|
49
49
|
## Current Behavior
|
|
50
50
|
|
|
51
|
-
<!--
|
|
51
|
+
<!--
|
|
52
52
|
Describe the details of the bug. Try to keep this to one-paragraph.
|
|
53
53
|
-->
|
|
54
54
|
|
|
55
55
|
## Step-by-step reproduction instructions
|
|
56
56
|
|
|
57
|
-
<!--
|
|
57
|
+
<!--
|
|
58
58
|
Be sure to include any steps you took for the problem to exist. This is likely the longest part of the report.
|
|
59
59
|
|
|
60
|
-
Please include any logs you think relevant here. If the logs are long (more than 50 lines) please make a gist of the logs and link to it. https://gist.github.com
|
|
60
|
+
Please include any logs you think relevant here. If the logs are long (more than 50 lines) please make a gist of the logs and link to it. https://gist.github.com
|
|
61
|
+
|
|
62
|
+
With long logs, you can also use the <details> tag to keep the report readable. Example:
|
|
63
|
+
|
|
64
|
+
<details>
|
|
65
|
+
<summary>Summary Goes Here</summary>
|
|
66
|
+
...this is hidden, collapsable content...
|
|
67
|
+
</details>
|
|
61
68
|
-->
|
|
62
69
|
|
|
63
70
|
## Code Sample
|
data/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,11 @@
|
|
|
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.8.12]
|
|
7
|
+
- #243 Update activerecord docs
|
|
8
|
+
- #244 Make ENV['HOME'] an absolute path because some file operations will barf otherwise
|
|
9
|
+
- #247 Fix Jets afterburner: fix wait_for_socket on aws lambda, rescue Errno::EAFNOSUPPORT
|
|
10
|
+
|
|
6
11
|
## [1.8.11]
|
|
7
12
|
- #242 adjust resp when request coming from elb
|
|
8
13
|
- update jets generate scaffold post casing
|
data/lib/jets/rack_server.rb
CHANGED
|
@@ -64,7 +64,7 @@ module Jets
|
|
|
64
64
|
begin
|
|
65
65
|
server = TCPSocket.new('localhost', 9292)
|
|
66
66
|
server.close
|
|
67
|
-
rescue Errno::ECONNREFUSED
|
|
67
|
+
rescue Errno::ECONNREFUSED, Errno::EAFNOSUPPORT
|
|
68
68
|
puts "Unable to connect to localhost:9292. Delay for #{delay} and will try to connect again." if ENV['JETS_DEBUG']
|
|
69
69
|
sleep(delay)
|
|
70
70
|
retries += 1
|
data/lib/jets/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jets
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.8.
|
|
4
|
+
version: 1.8.12
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tung Nguyen
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-05-
|
|
11
|
+
date: 2019-05-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: actionmailer
|