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 +4 -4
- data/CHANGELOG.md +3 -0
- data/Gemfile.lock +1 -1
- data/README.md +4 -0
- data/lib/jets/application.rb +1 -1
- data/lib/jets/commands/templates/skeleton/config/application.rb.tt +1 -1
- data/lib/jets/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 554083017110e6aef17fa79c69bbb53aaa0532c8015a7f9372a5cab266937840
|
4
|
+
data.tar.gz: e93d0e030a9160120cef06b98a86c8417fccbefec7e89729f12b2371ef032a26
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
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
|

|
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:
|
data/lib/jets/application.rb
CHANGED
@@ -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 =
|
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 =
|
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