jets 1.8.11 → 1.8.12

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: fb3d00ff418ec347dac447658effba631e98a994dd0fcf4104776a97b5fbad58
4
- data.tar.gz: 6dfc483a6a998d275689361ed94897cd7fb45d7f65b1c6e5b370697fa7e2f80f
3
+ metadata.gz: aed5e254b55392628af22e3aee0bc23adfe7b78c4193ada008d00e6a3f8f3de1
4
+ data.tar.gz: ca6789659972a3a79871467d67be32269d625f0bc007adfeac3fa3a3d716b3ee
5
5
  SHA512:
6
- metadata.gz: ab31c4838c3c9d435e471610099d3f9e2b9ba1cbef514ab86664ae259b71faf9ecbf60446c671e18909214a74584f6ab839be79ffea6b8fd9a3d1c2b0293c50c
7
- data.tar.gz: 5cb30b77d29e3ba878e0f2acaaac0083d5376e6ff9efc3fbedf23386046ca03667198d19de34a4edb1d91fcbfd782b2607a7fd13a45ff6759325c4b99a9d0a0f
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
@@ -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
@@ -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
@@ -1,3 +1,3 @@
1
1
  module Jets
2
- VERSION = "1.8.11"
2
+ VERSION = "1.8.12"
3
3
  end
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.11
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-02 00:00:00.000000000 Z
11
+ date: 2019-05-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: actionmailer