jets 0.7.0 → 0.7.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: 9aa29acf2df1aa6895322b3ca3b552ec19588dfbf30572c1c48669c49476fa5b
4
- data.tar.gz: f8447813c033772d32e7799f6163cebfb5db60d2e44b7538a500e90c4750db6f
3
+ metadata.gz: 16cdf110e35fa56fc847cdd8e6a6941a2fba176a407916f089e25d5b82ac1259
4
+ data.tar.gz: 485c1e5b430899c6335c7d62709993ed8d837155864ae2cda36ad73db0097857
5
5
  SHA512:
6
- metadata.gz: 55c640eb1ce2bce89e4e8d22756491c0bef3d29a692ffa67ece43f8a9be202e0f79853347b02fba4e29272c98bbdda08f048cdffd0bfd4ce8ba6aa2898850ba3
7
- data.tar.gz: ccd75d822e8289486b14839499c6bf69e907fcd7b8a22a138f25189bb31ae5d78db3adcf2763c31cb0acb6ece0a7892ed5d27a3353af10ec7d36533fc52f2463
6
+ metadata.gz: 27e0359780451354ecacfe9a65ae4fd0cc3498b855d1cda2d2956699f93dd0c0df7aeda611fce6d77023b7c18b94b99f56a109e667d5c7e24686aac6e061e7ce
7
+ data.tar.gz: 898c00749dea09e1962e7a5a178398e98e1035249e6f3cb9b65b93e44fdecba376b2445f54e67d6b8a73294f1282b2f3aa0f59f6771dc336fb59767a6358d2ac
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.7.1]
7
+ - fix application-wide config.iam_policy ability
8
+
6
9
  ## [0.7.0]
7
10
  - add managed_iam_policy concept, pull request #19
8
11
  - bump to 0.7.0, enough changes since 0.6.x
data/Gemfile.lock CHANGED
@@ -11,7 +11,7 @@ GIT
11
11
  PATH
12
12
  remote: .
13
13
  specs:
14
- jets (0.7.0)
14
+ jets (0.7.1)
15
15
  actionpack (>= 5.2.1)
16
16
  actionview (>= 5.2.1)
17
17
  activerecord (>= 5.2.1)
@@ -71,7 +71,7 @@ GEM
71
71
  aws-sdk-cloudwatchlogs (1.5.0)
72
72
  aws-sdk-core (~> 3)
73
73
  aws-sigv4 (~> 1.0)
74
- aws-sdk-core (3.24.1)
74
+ aws-sdk-core (3.25.0)
75
75
  aws-eventstream (~> 1.0)
76
76
  aws-partitions (~> 1.0)
77
77
  aws-sigv4 (~> 1.0)
@@ -85,7 +85,7 @@ GEM
85
85
  aws-sdk-lambda (1.8.0)
86
86
  aws-sdk-core (~> 3)
87
87
  aws-sigv4 (~> 1.0)
88
- aws-sdk-s3 (1.17.0)
88
+ aws-sdk-s3 (1.17.1)
89
89
  aws-sdk-core (~> 3, >= 3.21.2)
90
90
  aws-sdk-kms (~> 1)
91
91
  aws-sigv4 (~> 1.0)
@@ -88,9 +88,9 @@ 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
- # Must set defaul t iam_policy here instead of `def config` because we need access to
91
+ # Must set default iam_policy here instead of `def config` because we need access to
92
92
  # the project_namespace and if we call it from `def config` we get an infinit loop
93
- config.iam_policy = [{
93
+ config.iam_policy ||= [{
94
94
  sid: "Statement1",
95
95
  action: ["logs:*"],
96
96
  effect: "Allow",
data/lib/jets/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Jets
2
- VERSION = "0.7.0"
2
+ VERSION = "0.7.1"
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: 0.7.0
4
+ version: 0.7.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tung Nguyen
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2018-08-29 00:00:00.000000000 Z
11
+ date: 2018-08-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: thor