humidifier 4.0.2 → 4.1.1

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: a183a5b553c11e9e2f8190de6d247a97afa7f8068454e9a6295118e290705e59
4
- data.tar.gz: 682092d52b4741c8b8f1572f3a60b6e39844b4c5b022df45edf64f76e6412033
3
+ metadata.gz: 01f0f73eb18f928b5839555c3082972acd2e88cfd1718190693301f3edaca1ec
4
+ data.tar.gz: 380853e79ef1a404150d1c1cf8dbc0d63033cec9f6c9049659b3f29729a3455a
5
5
  SHA512:
6
- metadata.gz: 64084cccf5eb71c95d7c5ace43612490daf516a939cd269621e8a6dc2839d34fadadd23372d4c3746d6ef0a5d1cc4adbd3be6235efb2c21f04e996a4d7b80d57
7
- data.tar.gz: 586e6619c5a75c002fab6e5afd212978f9fb77107be756f31ea80b7c3c48702dcc6452d90ecde323a0e6b319d946c41226e013d0aba1338ad59c122872895f88
6
+ metadata.gz: cc2dfb66198bba3460b23e11e2560e1f8ac9af1e5430b98f3ba56c8710a0752e534cd48eaa52c2fd7bbb39d1d7b9124875252780b95da8c0a3c8b7e23a4dcbd0
7
+ data.tar.gz: 1637e2f97405a431281b21bd40496e41f82e8056c9bf7e3cfc23331c20e27f10852c69f53bf4d2131b757efa86b1a923f152ecf48313e7fbeca548f8a75aea54
@@ -0,0 +1,6 @@
1
+ version: 2
2
+ updates:
3
+ - package-ecosystem: "bundler"
4
+ directory: "/"
5
+ schedule:
6
+ interval: "daily"
@@ -0,0 +1,34 @@
1
+ name: Main
2
+ on:
3
+ - push
4
+ - pull_request_target
5
+ jobs:
6
+ ci:
7
+ name: CI
8
+ runs-on: ubuntu-latest
9
+ env:
10
+ CI: true
11
+ steps:
12
+ - uses: actions/checkout@master
13
+ - uses: ruby/setup-ruby@v1
14
+ with:
15
+ ruby-version: 3.0
16
+ bundler-cache: true
17
+ - name: Lint and test
18
+ run: |
19
+ bundle exec rubocop --parallel
20
+ bundle exec rake test
21
+ automerge:
22
+ name: AutoMerge
23
+ needs: ci
24
+ runs-on: ubuntu-latest
25
+ if: github.event_name == 'pull_request_target' && (github.actor == github.repository_owner || github.actor == 'dependabot[bot]')
26
+ steps:
27
+ - uses: actions/github-script@v3
28
+ with:
29
+ script: |
30
+ github.pulls.merge({
31
+ owner: context.payload.repository.owner.login,
32
+ repo: context.payload.repository.name,
33
+ pull_number: context.payload.pull_request.number
34
+ })
data/.gitignore ADDED
@@ -0,0 +1,9 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /.ruby-version
4
+ /_yardoc/
5
+ /coverage/
6
+ /pkg/
7
+ /spec/reports/
8
+ /tmp/
9
+ *.bundle
data/.rubocop.yml ADDED
@@ -0,0 +1,45 @@
1
+ AllCops:
2
+ DisplayCopNames: true
3
+ DisplayStyleGuide: true
4
+ TargetRubyVersion: 2.7
5
+ Exclude:
6
+ - '{tmp,vendor,yard}/**/*'
7
+
8
+ Gemspec/RequiredRubyVersion:
9
+ Enabled: false
10
+
11
+ Layout/LineLength:
12
+ Max: 80
13
+
14
+ Lint/AmbiguousBlockAssociation:
15
+ Enabled: false
16
+
17
+ Metrics/ClassLength:
18
+ Enabled: false
19
+
20
+ Naming/MemoizedInstanceVariableName:
21
+ Enabled: false
22
+
23
+ Naming/RescuedExceptionsVariableName:
24
+ Enabled: false
25
+
26
+ Style/Documentation:
27
+ Enabled: false
28
+
29
+ Style/FormatString:
30
+ EnforcedStyle: percent
31
+
32
+ Style/FormatStringToken:
33
+ Enabled: false
34
+
35
+ Style/HashTransformKeys:
36
+ Enabled: false
37
+
38
+ Style/HashTransformValues:
39
+ Enabled: false
40
+
41
+ Style/OptionalBooleanParameter:
42
+ Enabled: false
43
+
44
+ Style/PerlBackrefs:
45
+ Enabled: false
data/.yardopts ADDED
@@ -0,0 +1,10 @@
1
+ --title 'Humidifier'
2
+ --no-private
3
+ --template-path ./yard/templates
4
+ --markup markdown
5
+ --tag aws:"AWS Resource"
6
+ --quiet
7
+ --output-dir docs
8
+ -
9
+ CHANGELOG.md
10
+ LICENSE
data/CHANGELOG.md ADDED
@@ -0,0 +1,114 @@
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file.
4
+
5
+ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
6
+
7
+ ## [Unreleased]
8
+
9
+ ## [4.1.1] - 2021-11-17
10
+
11
+ ### Changed
12
+
13
+ - Require MFA for releasing.
14
+
15
+ ## [4.1.0] - 2020-04-19
16
+
17
+ ### Added
18
+
19
+ - You can now run `humidifier upgrade`, which will download the latest specs from AWS, so that you won't need to upgrade this gem in order to do that.
20
+ - This gem will now ship with a default CLI that you can execute. If you execute that CLI and you have a custom one it will automatically switch to executing that one instead.
21
+
22
+ ## [4.0.2] - 2019-12-11
23
+
24
+ ### Changed
25
+
26
+ - Bump to CFN spec 10.0.0.
27
+
28
+ ## [4.0.1] - 2019-11-14
29
+
30
+ ### Changed
31
+
32
+ - Bump to CFN spec 8.0.0.
33
+
34
+ ## [4.0.0] - 2019-09-17
35
+
36
+ ### Changed
37
+
38
+ - Bump to CFN spec 6.1.0.
39
+
40
+ ## [3.5.0] - 2019-07-25
41
+
42
+ ### Changed
43
+
44
+ - Bump to CFN spec 4.3.0.
45
+
46
+ ## [3.4.0] - 2019-06-18
47
+
48
+ ### Changed
49
+
50
+ - Bump to CFN spec 3.4.0.
51
+
52
+ ## [3.3.0] - 2019-05-25
53
+
54
+ ### Changed
55
+
56
+ - Bump to CFN spec 3.3.0.
57
+
58
+ ## [3.2.0] - 2019-05-08
59
+
60
+ ### Changed
61
+
62
+ - Added some emoji to the CLI output.
63
+
64
+ ## [3.1.0] - 2019-05-08
65
+
66
+ ### Added
67
+
68
+ - The CLI functionality from the `humidifier-reservoir` gem directly into `humidifier`.
69
+
70
+ ## [3.0.1] - 2019-05-08
71
+
72
+ ### Changed
73
+
74
+ - Register dependencies with `add_dependency` so they get picked up by bundler.
75
+
76
+ ## [3.0.0] - 2019-05-07
77
+
78
+ ### Added
79
+
80
+ - The `fast_underscore` dependency, which actually ended up being more accurate than our previous underscore method.
81
+
82
+ ### Changed
83
+
84
+ - Updated the specs to `v3.0.0`.
85
+ - Bumped the minimum ruby version to `2.4`, which allows us to strip out some of the old code necessary to support the EOL'd versions.
86
+ - `Humidifier::Utils::underscored` has been moved and renamed, so it is now `Humidifier::underscore`. The `Humidifier::Utils::underscore` has been moved directly into the `String` class because of `fast_underscore`.
87
+ - Because of the removal of support for the other SDK versions, the test suite has been greatly simplified. We can now use the stub responses functionality from the AWS SDK itself.
88
+ - The `Humidifier::Configuration` class has been renamed to `Humidifier::Config`.
89
+ - The `Humidifier::SdkPayload` class has been removed and the functionality merged directly into the `Humidifier::Stack` class.
90
+
91
+ ### Removed
92
+
93
+ - Support for the other SDK versions has been dropped. Because of this, `humidifier` now ships with `aws-sdk-cloudformation` and `aws-sdk-s3` as dependencies. This also greatly simplifies the code. All of functionality that used to live in the shims for the various SDK versions has been merged into the `Humidifer::Stack` class.
94
+ - Support for the `raw` option when importing resources. From now on, invalid types for properties always error as opposed to allowing some values to be converted. (`#convert` methods on all of the props were therefore also removed.)
95
+
96
+ ## [2.15.0] - 2018-11-28
97
+
98
+ ### Changed
99
+ - Update to CloudFormation specs v2.15.0
100
+
101
+ [unreleased]: https://github.com/kddnewton/humidifier/compare/v4.1.1...HEAD
102
+ [4.1.1]: https://github.com/kddnewton/humidifier/compare/v4.1.0...v4.1.1
103
+ [4.1.0]: https://github.com/kddnewton/humidifier/compare/v4.0.2...v4.1.0
104
+ [4.0.2]: https://github.com/kddnewton/humidifier/compare/v4.0.1...v4.0.2
105
+ [4.0.1]: https://github.com/kddnewton/humidifier/compare/v4.0.0...v4.0.1
106
+ [4.0.0]: https://github.com/kddnewton/humidifier/compare/v3.5.0...v4.0.0
107
+ [3.5.0]: https://github.com/kddnewton/humidifier/compare/v3.4.0...v3.5.0
108
+ [3.4.0]: https://github.com/kddnewton/humidifier/compare/v3.3.0...v3.4.0
109
+ [3.3.0]: https://github.com/kddnewton/humidifier/compare/v3.2.0...v3.3.0
110
+ [3.2.0]: https://github.com/kddnewton/humidifier/compare/v3.1.0...v3.2.0
111
+ [3.1.0]: https://github.com/kddnewton/humidifier/compare/v3.0.1...v3.1.0
112
+ [3.0.1]: https://github.com/kddnewton/humidifier/compare/v3.0.0...v3.0.1
113
+ [3.0.0]: https://github.com/kddnewton/humidifier/compare/v2.15.0...v3.0.0
114
+ [2.15.0]: https://github.com/kddnewton/humidifier/compare/f05157...v2.15.0
@@ -0,0 +1,76 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ In the interest of fostering an open and welcoming environment, we as
6
+ contributors and maintainers pledge to making participation in our project and
7
+ our community a harassment-free experience for everyone, regardless of age, body
8
+ size, disability, ethnicity, sex characteristics, gender identity and expression,
9
+ level of experience, education, socio-economic status, nationality, personal
10
+ appearance, race, religion, or sexual identity and orientation.
11
+
12
+ ## Our Standards
13
+
14
+ Examples of behavior that contributes to creating a positive environment
15
+ include:
16
+
17
+ - Using welcoming and inclusive language
18
+ - Being respectful of differing viewpoints and experiences
19
+ - Gracefully accepting constructive criticism
20
+ - Focusing on what is best for the community
21
+ - Showing empathy towards other community members
22
+
23
+ Examples of unacceptable behavior by participants include:
24
+
25
+ - The use of sexualized language or imagery and unwelcome sexual attention or
26
+ advances
27
+ - Trolling, insulting/derogatory comments, and personal or political attacks
28
+ - Public or private harassment
29
+ - Publishing others' private information, such as a physical or electronic
30
+ address, without explicit permission
31
+ - Other conduct which could reasonably be considered inappropriate in a
32
+ professional setting
33
+
34
+ ## Our Responsibilities
35
+
36
+ Project maintainers are responsible for clarifying the standards of acceptable
37
+ behavior and are expected to take appropriate and fair corrective action in
38
+ response to any instances of unacceptable behavior.
39
+
40
+ Project maintainers have the right and responsibility to remove, edit, or
41
+ reject comments, commits, code, wiki edits, issues, and other contributions
42
+ that are not aligned to this Code of Conduct, or to ban temporarily or
43
+ permanently any contributor for other behaviors that they deem inappropriate,
44
+ threatening, offensive, or harmful.
45
+
46
+ ## Scope
47
+
48
+ This Code of Conduct applies both within project spaces and in public spaces
49
+ when an individual is representing the project or its community. Examples of
50
+ representing a project or community include using an official project e-mail
51
+ address, posting via an official social media account, or acting as an appointed
52
+ representative at an online or offline event. Representation of a project may be
53
+ further defined and clarified by project maintainers.
54
+
55
+ ## Enforcement
56
+
57
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
58
+ reported by contacting the project team at kddnewton@gmail.com. All
59
+ complaints will be reviewed and investigated and will result in a response that
60
+ is deemed necessary and appropriate to the circumstances. The project team is
61
+ obligated to maintain confidentiality with regard to the reporter of an incident.
62
+ Further details of specific enforcement policies may be posted separately.
63
+
64
+ Project maintainers who do not follow or enforce the Code of Conduct in good
65
+ faith may face temporary or permanent repercussions as determined by other
66
+ members of the project's leadership.
67
+
68
+ ## Attribution
69
+
70
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71
+ available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html
72
+
73
+ [homepage]: https://www.contributor-covenant.org
74
+
75
+ For answers to common questions about this code of conduct, see
76
+ https://www.contributor-covenant.org/faq