jets 0.8.2 → 0.8.3

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: 40360dae957d26be5d95365570b65af5b0d865ce8940078c8acbf136ecf4e4fd
4
- data.tar.gz: f976b075cf144abfb50385aa57bc0413b1851b4c7e58a346705f83281d93fd77
3
+ metadata.gz: 554083017110e6aef17fa79c69bbb53aaa0532c8015a7f9372a5cab266937840
4
+ data.tar.gz: e93d0e030a9160120cef06b98a86c8417fccbefec7e89729f12b2371ef032a26
5
5
  SHA512:
6
- metadata.gz: 2d34841937dc1d52101b0079f953e40dad6297b27c56472e7d9e778639774be975ea704d28b025913491b2d419c5e80ef612950d6505d2c71d48d19781d403ed
7
- data.tar.gz: b66e879020076d307c1bfb30d2937dc83b56ec94a82fce89e3f63011494da0987baa994d8456ca178ae226f57c2576b26f1104b8bb93d465b02a416068e282f4
6
+ metadata.gz: 8f3cae69d437e4a45b3028d59823af81b9d4d1193429ab8cec6dae772f6fdc95a568469128374d107ca37377d3d98cd4edebcecb4d7987503b5fff7ef1df73bd
7
+ data.tar.gz: 5474c0f27bb2860ce070021539ae0772e1fcc1a9464af205b5a892a604b396fb2ccc6ff57d5c11c03130fdd705bea1eb302934a8386f44809ca52f9e385a488c
data/CHANGELOG.md CHANGED
@@ -3,6 +3,9 @@
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/), even before v1.0.
5
5
 
6
+ ## [0.8.3]
7
+ - adjust prewarm.public_ratio default to 10
8
+
6
9
  ## [0.8.2]
7
10
  - add prewarm.public_ratio option: http://rubyonjets.com/docs/prewarming/
8
11
 
data/Gemfile.lock CHANGED
@@ -11,7 +11,7 @@ GIT
11
11
  PATH
12
12
  remote: .
13
13
  specs:
14
- jets (0.8.2)
14
+ jets (0.8.3)
15
15
  actionpack (>= 5.2.1)
16
16
  actionview (>= 5.2.1)
17
17
  activerecord (>= 5.2.1)
data/README.md CHANGED
@@ -108,6 +108,10 @@ After deployment, you can test the Lambda functions with the AWS Lambda console
108
108
 
109
109
  ![Lambda Console](https://s3.amazonaws.com/boltops-demo/images/screenshots/lambda-console-posts-controller-index.png)
110
110
 
111
+ ### Live Demo
112
+
113
+ Here's a [Live Demo](https://demo.rubyonjets.com/posts) of the quintessential CRUD Jets app.
114
+
111
115
  ### More Info
112
116
 
113
117
  For more documentation, check out the official docs: [Ruby on Jets](http://rubyonjets.com/). Here's a list of useful links:
@@ -23,7 +23,7 @@ class Jets::Application
23
23
  config.prewarm.enable = true
24
24
  config.prewarm.rate = '2 hours'
25
25
  config.prewarm.concurrency = 2
26
- config.prewarm.public_ratio = 5
26
+ config.prewarm.public_ratio = 10
27
27
 
28
28
  config.lambdagems = ActiveSupport::OrderedOptions.new
29
29
  config.lambdagems.sources = [
@@ -5,7 +5,7 @@ Jets.application.configure do
5
5
  # config.prewarm.enable = true # default is true
6
6
  # config.prewarm.rate = '2 hours' # default is '2 hours'
7
7
  # config.prewarm.concurrency = 2 # default is 2
8
- # config.prewarm.public_ratio = 5 # default is 5
8
+ # config.prewarm.public_ratio = 10 # default is 10
9
9
 
10
10
  # config.env_extra = 2 # can also set this with JETS_ENV_EXTRA
11
11
  # config.extra_autoload_paths = []
data/lib/jets/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Jets
2
- VERSION = "0.8.2"
2
+ VERSION = "0.8.3"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jets
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.2
4
+ version: 0.8.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tung Nguyen