jets 1.9.9 → 1.9.10

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: dc941d67e4349107568df297af3295e42c2d4de76412161c6f6768be0622bf06
4
- data.tar.gz: 0035d883301bf757d5dac0c6586b07b363ee7f6dd8daa16f216160848e9f1bef
3
+ metadata.gz: 1e51337a89e767ee6ed30e92d4f1ee407f6e9848533042f853432cd6f15a0ec1
4
+ data.tar.gz: 1580f2ce27a10f3d5c685f0c0bb15fcfd76390b50a0db414a7d072786b8fe710
5
5
  SHA512:
6
- metadata.gz: 1936447b3268719f91bd3569ca9a7612c202696bc049a61cd64094d15661aaf56fa59a77adfd25e84b911c0d1da671fb7de9c2152644d9fe9bc68647b9859b87
7
- data.tar.gz: 7e551991b7c0d5c1502cbef083a75651bdcfc0f20c669e7c74158ef0731711d0548ef908386d8ba7ee9eef4d5fe9540a22ce7946496de7e5292862ab85d84d2e
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: http://rubyonjets.com/docs/debugging-cloudformation/
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: http://rubyonjets.com/docs/assets-serving/
7
+ # More info here: https://rubyonjets.com/docs/extras/assets-serving/
8
8
  any "*catchall", to: "jets/public#show"
9
9
  end
@@ -206,6 +206,7 @@ module Jets::Controller::Rendering
206
206
  end
207
207
 
208
208
  ActionController::Base.append_view_path("#{Jets.root}/app/views")
209
+ ActionView::Resolver.caching = !Jets.env.development?
209
210
 
210
211
  setup_webpacker if Jets.webpacker?
211
212
  end
data/lib/jets/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Jets
2
- VERSION = "1.9.9"
2
+ VERSION = "1.9.10"
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.9.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-05-31 00:00:00.000000000 Z
11
+ date: 2019-06-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: actionmailer