jets 0.6.0 → 0.6.1

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: b156a3904d427d2d2604ad4026e069c6efe7a724c6c3937c9bd0a8cc28ecdda2
4
- data.tar.gz: 4fb811e051ea4cf10dd5032a2b127a0b92b686d3e9818640fe8e10f2cc6b34a4
3
+ metadata.gz: b848eb02ef798152df9d3fd79f8f06abaae286189b68722cbbeb34080bb0f47f
4
+ data.tar.gz: cc7c92a5b7838ef19829a51200bec27dbd4059b293834b8433b4cafbec44f80a
5
5
  SHA512:
6
- metadata.gz: c137bfe10a6a4c07af49d524a95374ca26c124b5367054015e709adaa200c748b2187b4275e69495cff5a0cef60c70e52e6abb8be81bd0a524953c96d7043b6a
7
- data.tar.gz: e823f819bc813e3e78b99ca76c38aae10ee644178b73ad4728bc5bdea70818bfc544af116020e89c472d2cd5ac99fee79244e69fea2aacb26644a37e3fae9888
6
+ metadata.gz: c62883fae460ed6e8f40a72e652ad07181f826534566616de17f17822362a6814605489e5b3839e70b65bf867c4da79a7227353f31fa745d63f01ab0ec17a5cd
7
+ data.tar.gz: e1fdcb65b274e38f0abb901d7d283adf674c2e2b02d514bcf4af67b87210dff732204f75f2c2ade1179fdd74d298ec6fea7810630fa330bf691ded311e0390da
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 *tries* to adhere to [Semantic Versioning](http://semver.org/), even before v1.0.
5
5
 
6
+ ## [0.6.1]
7
+ - only prewarm if Jets::PreheatJob.warm available
8
+
6
9
  ## [0.6.0]
7
10
  - fine grain iam policy abilities: pull request #13 from tongueroo/iam-policy
8
11
  - changed quite a few logical ids in the CloudFormation templates
data/Gemfile.lock CHANGED
@@ -11,7 +11,7 @@ GIT
11
11
  PATH
12
12
  remote: .
13
13
  specs:
14
- jets (0.5.8)
14
+ jets (0.6.1)
15
15
  actionpack
16
16
  actionview
17
17
  activerecord
@@ -88,7 +88,6 @@ class Jets::Application
88
88
  project_namespace = [config.project_name, config.short_env, config.env_extra].compact.join('-')
89
89
  config.project_namespace = project_namespace
90
90
 
91
- # config.iam_policy = ["logs2:*"]
92
91
  # Must set defaul t iam_policy here instead of `def config` because we need access to
93
92
  # the project_namespace and if we call it from `def config` we get an infinit loop
94
93
  config.iam_policy = [{
data/lib/jets/cfn/ship.rb CHANGED
@@ -84,6 +84,7 @@ class Jets::Cfn
84
84
  def prewarm
85
85
  return unless @options[:stack_type] == :full # s3 bucket is available
86
86
  return unless Jets.config.prewarm.enable
87
+ return unless Jets::PreheatJob.respond_to?(:torch) && Jets::PreheatJob.respond_to?(:warm)
87
88
 
88
89
  puts "Prewarming application..."
89
90
  if Jets::PreheatJob::CONCURRENCY > 1
data/lib/jets/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Jets
2
- VERSION = "0.6.0"
2
+ VERSION = "0.6.1"
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.6.0
4
+ version: 0.6.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tung Nguyen