jets 1.0.8 → 1.0.9
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 77b7246e3883262eaefb30035b4774932787746803608ff1ba2be057734b3f46
|
4
|
+
data.tar.gz: 8b6dabcf954f5b6e0a69fa8316c549ca8609ef87df68cc7821d332a2bf33f2ba
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2b3af6d8eac8f0db17953148c53bbcc226e7742f787e2ff020f96caacb8834b1f1430a7c3c80748728dce56e9697e5021d432bb5293648cf5147a2297bb5a42e
|
7
|
+
data.tar.gz: f20ba90e2e74c06a89751e2fffcc9d3d84315a58720ed3c7e1fb15539617ede91f9929a94d11fb6ed4f9b8a71b1a0dd74501d4365a340f6617515bb51e1322c6
|
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
|
+
## [1.0.9]
|
7
|
+
- adjust starter .env.development and config/application.rb
|
8
|
+
|
6
9
|
## [1.0.8]
|
7
10
|
- fix s3 assets to work with custom domains #58 from tongueroo/fix-assets
|
8
11
|
|
data/Gemfile.lock
CHANGED
@@ -17,17 +17,17 @@ Jets.application.configure do
|
|
17
17
|
|
18
18
|
# config.asset_base_url = 'https://cloudfront.domain.com/assets' # example
|
19
19
|
|
20
|
-
config.cors = true # for '*''
|
20
|
+
# config.cors = true # for '*'' # defaults to true
|
21
21
|
# config.cors = '*.mydomain.com' # for specific domain
|
22
22
|
|
23
|
-
config.function.timeout = 30
|
23
|
+
# config.function.timeout = 30 # defaults to 30
|
24
24
|
# config.function.role = "arn:aws:iam::#{Jets.aws.account}:role/service-role/pre-created"
|
25
25
|
# config.function.memory_size = 1536
|
26
26
|
|
27
|
-
config.function.environment = {
|
28
|
-
|
29
|
-
|
30
|
-
}
|
27
|
+
# config.function.environment = {
|
28
|
+
# global_app_key1: "global_app_value1",
|
29
|
+
# global_app_key2: "global_app_value2",
|
30
|
+
# }
|
31
31
|
# More examples:
|
32
32
|
# config.function.dead_letter_queue = { target_arn: "arn" }
|
33
33
|
# config.function.vpc_config = {
|
data/lib/jets/version.rb
CHANGED