jets 1.9.9 → 1.9.10
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: 1e51337a89e767ee6ed30e92d4f1ee407f6e9848533042f853432cd6f15a0ec1
|
|
4
|
+
data.tar.gz: 1580f2ce27a10f3d5c685f0c0bb15fcfd76390b50a0db414a7d072786b8fe710
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9c3ffd16e1d94fb0c5dc6a355a1f408fcf9cb99de52c6c2f4f0a2fe3df04a0f50d5fe4f425df9f5bf42c89d7a66a05177ab614d4cb57c000c89ac13d27b55d28
|
|
7
|
+
data.tar.gz: 3ef244c3ed9cad59e72f7a437ae8ac3638280a7d4fff2fea9464c33a42700eaf75609ae31e0e462ee1dd643237d413c64c82e5326660ee0e97d422931f8629ec
|
data/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,10 @@
|
|
|
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.9.10]
|
|
7
|
+
- #276 Correct CloudFormation debugging url
|
|
8
|
+
- #277 hot reload views for development mode
|
|
9
|
+
|
|
6
10
|
## [1.9.9]
|
|
7
11
|
- #275 warn about bundler/setup failure
|
|
8
12
|
|
data/lib/jets/cfn/ship.rb
CHANGED
|
@@ -38,7 +38,7 @@ module Jets::Cfn
|
|
|
38
38
|
The logs above show the CloudFormation parent stack events and points to the stack with the error.
|
|
39
39
|
Please go to the CloudFormation console and look for the specific stack with the error.
|
|
40
40
|
The specific child stack usually shows more detailed information and can be used to resolve the issue.
|
|
41
|
-
Example of checking the CloudFormation console:
|
|
41
|
+
Example of checking the CloudFormation console: https://rubyonjets.com/docs/debugging/cloudformation/
|
|
42
42
|
EOL
|
|
43
43
|
return
|
|
44
44
|
end
|
|
@@ -4,6 +4,6 @@ Jets.application.routes.draw do
|
|
|
4
4
|
# The jets/public#show controller can serve static utf8 content out of the public folder.
|
|
5
5
|
# Note, as part of the deploy process Jets uploads files in the public folder to s3
|
|
6
6
|
# and serves them out of s3 directly. S3 is well suited to serve static assets.
|
|
7
|
-
# More info here:
|
|
7
|
+
# More info here: https://rubyonjets.com/docs/extras/assets-serving/
|
|
8
8
|
any "*catchall", to: "jets/public#show"
|
|
9
9
|
end
|
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.9.
|
|
4
|
+
version: 1.9.10
|
|
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-
|
|
11
|
+
date: 2019-06-01 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: actionmailer
|