kubezilla 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: e7a6ff5f325a38734f0dc7074aeda5f7ea729f246226655adc16eebd760a664f
4
+ data.tar.gz: '079f96b43a688d4bbd5a0e19077e6ff635de953a6d921285c7aae6c76326bef1'
5
+ SHA512:
6
+ metadata.gz: b4a17848ea9b87f725e696af08074c1ca5058b2e9782e1a93495215fcabcee6bbf3c561a56b148502de4a1f56a359bbf9abf213ef688e026ca47fdf7fa4a6730
7
+ data.tar.gz: 2a59ac4dc054d616df9e7e779bcd4474ac72fd8d782fe299c9cf3b235dc3f1e628a914430c35e57b2a1344febda3af35f8df8ac0411378faaf2012861607ca5f
data/.overcommit.yml ADDED
@@ -0,0 +1,4 @@
1
+ PreCommit:
2
+ RuboCop:
3
+ enabled: true
4
+ on_warn: fail # Treat all warnings as failures
data/.rspec ADDED
@@ -0,0 +1,4 @@
1
+ --format progress
2
+ --color
3
+ --require spec_helper
4
+ --order random
data/.rubocop.yml ADDED
@@ -0,0 +1,44 @@
1
+ AllCops:
2
+ TargetRubyVersion: 3.2
3
+ NewCops: enable
4
+ SuggestExtensions: false
5
+
6
+ require:
7
+ - rubocop-performance
8
+ - rubocop-rspec
9
+
10
+ Layout/LineLength:
11
+ Max: 120
12
+ Exclude:
13
+ - spec/**/*_spec.rb
14
+
15
+ Metrics/BlockLength:
16
+ Exclude:
17
+ - spec/**/*_spec.rb
18
+ - "*.gemspec"
19
+
20
+ Metrics/MethodLength:
21
+ Max: 10
22
+
23
+ RSpec/NamedSubject:
24
+ Enabled: false
25
+
26
+ Style/StringLiterals:
27
+ Enabled: true
28
+ EnforcedStyle: double_quotes
29
+
30
+ Style/StringLiteralsInInterpolation:
31
+ Enabled: true
32
+ EnforcedStyle: double_quotes
33
+
34
+ Style/Documentation:
35
+ Enabled: false
36
+
37
+ Style/SymbolArray:
38
+ EnforcedStyle: brackets
39
+
40
+ Style/WordArray:
41
+ EnforcedStyle: brackets
42
+
43
+ Style/ClassAndModuleChildren:
44
+ EnforcedStyle: compact
@@ -0,0 +1,84 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ We as members, contributors, and leaders pledge to make participation in our community a harassment-free experience for everyone, regardless of age, body size, visible or invisible disability, ethnicity, sex characteristics, gender identity and expression, level of experience, education, socio-economic status, nationality, personal appearance, race, religion, or sexual identity and orientation.
6
+
7
+ We pledge to act and interact in ways that contribute to an open, welcoming, diverse, inclusive, and healthy community.
8
+
9
+ ## Our Standards
10
+
11
+ Examples of behavior that contributes to a positive environment for our community include:
12
+
13
+ * Demonstrating empathy and kindness toward other people
14
+ * Being respectful of differing opinions, viewpoints, and experiences
15
+ * Giving and gracefully accepting constructive feedback
16
+ * Accepting responsibility and apologizing to those affected by our mistakes, and learning from the experience
17
+ * Focusing on what is best not just for us as individuals, but for the overall community
18
+
19
+ Examples of unacceptable behavior include:
20
+
21
+ * The use of sexualized language or imagery, and sexual attention or
22
+ advances of any kind
23
+ * Trolling, insulting or derogatory comments, and personal or political attacks
24
+ * Public or private harassment
25
+ * Publishing others' private information, such as a physical or email
26
+ address, without their explicit permission
27
+ * Other conduct which could reasonably be considered inappropriate in a
28
+ professional setting
29
+
30
+ ## Enforcement Responsibilities
31
+
32
+ Community leaders are responsible for clarifying and enforcing our standards of acceptable behavior and will take appropriate and fair corrective action in response to any behavior that they deem inappropriate, threatening, offensive, or harmful.
33
+
34
+ Community leaders have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, and will communicate reasons for moderation decisions when appropriate.
35
+
36
+ ## Scope
37
+
38
+ This Code of Conduct applies within all community spaces, and also applies when an individual is officially representing the community in public spaces. Examples of representing our community include using an official e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event.
39
+
40
+ ## Enforcement
41
+
42
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be reported to the community leaders responsible for enforcement at zhulik.gleb@gmail.com. All complaints will be reviewed and investigated promptly and fairly.
43
+
44
+ All community leaders are obligated to respect the privacy and security of the reporter of any incident.
45
+
46
+ ## Enforcement Guidelines
47
+
48
+ Community leaders will follow these Community Impact Guidelines in determining the consequences for any action they deem in violation of this Code of Conduct:
49
+
50
+ ### 1. Correction
51
+
52
+ **Community Impact**: Use of inappropriate language or other behavior deemed unprofessional or unwelcome in the community.
53
+
54
+ **Consequence**: A private, written warning from community leaders, providing clarity around the nature of the violation and an explanation of why the behavior was inappropriate. A public apology may be requested.
55
+
56
+ ### 2. Warning
57
+
58
+ **Community Impact**: A violation through a single incident or series of actions.
59
+
60
+ **Consequence**: A warning with consequences for continued behavior. No interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, for a specified period of time. This includes avoiding interactions in community spaces as well as external channels like social media. Violating these terms may lead to a temporary or permanent ban.
61
+
62
+ ### 3. Temporary Ban
63
+
64
+ **Community Impact**: A serious violation of community standards, including sustained inappropriate behavior.
65
+
66
+ **Consequence**: A temporary ban from any sort of interaction or public communication with the community for a specified period of time. No public or private interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, is allowed during this period. Violating these terms may lead to a permanent ban.
67
+
68
+ ### 4. Permanent Ban
69
+
70
+ **Community Impact**: Demonstrating a pattern of violation of community standards, including sustained inappropriate behavior, harassment of an individual, or aggression toward or disparagement of classes of individuals.
71
+
72
+ **Consequence**: A permanent ban from any sort of public interaction within the community.
73
+
74
+ ## Attribution
75
+
76
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 2.0,
77
+ available at https://www.contributor-covenant.org/version/2/0/code_of_conduct.html.
78
+
79
+ Community Impact Guidelines were inspired by [Mozilla's code of conduct enforcement ladder](https://github.com/mozilla/diversity).
80
+
81
+ [homepage]: https://www.contributor-covenant.org
82
+
83
+ For answers to common questions about this code of conduct, see the FAQ at
84
+ https://www.contributor-covenant.org/faq. Translations are available at https://www.contributor-covenant.org/translations.
data/Gemfile ADDED
@@ -0,0 +1,21 @@
1
+ # frozen_string_literal: true
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gemspec
6
+
7
+ gem "rake"
8
+
9
+ gem "rspec"
10
+
11
+ gem "rubocop"
12
+ gem "rubocop-performance"
13
+ gem "rubocop-rspec"
14
+
15
+ gem "simplecov"
16
+ gem "webmock"
17
+
18
+ gem "overcommit"
19
+ gem "solargraph"
20
+
21
+ gem "async-rspec"
data/Gemfile.lock ADDED
@@ -0,0 +1,197 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ kubezilla (0.1.0)
5
+ async (~> 2.3.0)
6
+ async-http-faraday (~> 0.11)
7
+ memery (~> 1.4.0)
8
+ zeitwerk (~> 2.6.0)
9
+ zilla (~> 0.1.2)
10
+
11
+ GEM
12
+ remote: https://rubygems.org/
13
+ specs:
14
+ addressable (2.8.1)
15
+ public_suffix (>= 2.0.2, < 6.0)
16
+ ast (2.4.2)
17
+ async (2.3.1)
18
+ console (~> 1.10)
19
+ io-event (~> 1.1)
20
+ timers (~> 4.1)
21
+ async-http (0.59.5)
22
+ async (>= 1.25)
23
+ async-io (>= 1.28)
24
+ async-pool (>= 0.2)
25
+ protocol-http (~> 0.23)
26
+ protocol-http1 (~> 0.14.0)
27
+ protocol-http2 (~> 0.14.0)
28
+ traces (>= 0.8.0)
29
+ async-http-faraday (0.11.0)
30
+ async-http (~> 0.42)
31
+ faraday
32
+ async-io (1.34.3)
33
+ async
34
+ async-pool (0.3.12)
35
+ async (>= 1.25)
36
+ async-rspec (1.16.1)
37
+ rspec (~> 3.0)
38
+ rspec-files (~> 1.0)
39
+ rspec-memory (~> 1.0)
40
+ backport (1.2.0)
41
+ benchmark (0.2.1)
42
+ childprocess (4.1.0)
43
+ console (1.16.2)
44
+ fiber-local
45
+ crack (0.4.5)
46
+ rexml
47
+ diff-lcs (1.5.0)
48
+ docile (1.4.0)
49
+ e2mmap (0.1.0)
50
+ ecma-re-validator (0.4.0)
51
+ regexp_parser (~> 2.2)
52
+ faraday (2.7.4)
53
+ faraday-net_http (>= 2.0, < 3.1)
54
+ ruby2_keywords (>= 0.0.4)
55
+ faraday-net_http (3.0.2)
56
+ fiber-local (1.0.0)
57
+ hana (1.3.7)
58
+ hashdiff (1.0.1)
59
+ iniparse (1.5.0)
60
+ io-event (1.1.6)
61
+ jaro_winkler (1.5.4)
62
+ json (2.6.3)
63
+ json_schemer (0.2.24)
64
+ ecma-re-validator (~> 0.3)
65
+ hana (~> 1.3)
66
+ regexp_parser (~> 2.0)
67
+ uri_template (~> 0.7)
68
+ kramdown (2.4.0)
69
+ rexml
70
+ kramdown-parser-gfm (1.1.0)
71
+ kramdown (~> 2.0)
72
+ memery (1.4.1)
73
+ ruby2_keywords (~> 0.0.2)
74
+ nokogiri (1.14.0-x86_64-linux)
75
+ racc (~> 1.4)
76
+ oj (3.13.23)
77
+ overcommit (0.60.0)
78
+ childprocess (>= 0.6.3, < 5)
79
+ iniparse (~> 1.4)
80
+ rexml (~> 3.2)
81
+ parallel (1.22.1)
82
+ parser (3.2.0.0)
83
+ ast (~> 2.4.1)
84
+ protocol-hpack (1.4.2)
85
+ protocol-http (0.24.0)
86
+ protocol-http1 (0.14.6)
87
+ protocol-http (~> 0.22)
88
+ protocol-http2 (0.14.2)
89
+ protocol-hpack (~> 1.4)
90
+ protocol-http (~> 0.18)
91
+ public_suffix (5.0.1)
92
+ racc (1.6.2)
93
+ rainbow (3.1.1)
94
+ rake (13.0.6)
95
+ regexp_parser (2.6.2)
96
+ reverse_markdown (2.1.1)
97
+ nokogiri
98
+ rexml (3.2.5)
99
+ rspec (3.12.0)
100
+ rspec-core (~> 3.12.0)
101
+ rspec-expectations (~> 3.12.0)
102
+ rspec-mocks (~> 3.12.0)
103
+ rspec-core (3.12.0)
104
+ rspec-support (~> 3.12.0)
105
+ rspec-expectations (3.12.2)
106
+ diff-lcs (>= 1.2.0, < 2.0)
107
+ rspec-support (~> 3.12.0)
108
+ rspec-files (1.1.3)
109
+ rspec (~> 3.0)
110
+ rspec-memory (1.0.3)
111
+ rspec (~> 3.0)
112
+ rspec-mocks (3.12.3)
113
+ diff-lcs (>= 1.2.0, < 2.0)
114
+ rspec-support (~> 3.12.0)
115
+ rspec-support (3.12.0)
116
+ rubocop (1.44.1)
117
+ json (~> 2.3)
118
+ parallel (~> 1.10)
119
+ parser (>= 3.2.0.0)
120
+ rainbow (>= 2.2.2, < 4.0)
121
+ regexp_parser (>= 1.8, < 3.0)
122
+ rexml (>= 3.2.5, < 4.0)
123
+ rubocop-ast (>= 1.24.1, < 2.0)
124
+ ruby-progressbar (~> 1.7)
125
+ unicode-display_width (>= 2.4.0, < 3.0)
126
+ rubocop-ast (1.24.1)
127
+ parser (>= 3.1.1.0)
128
+ rubocop-capybara (2.17.0)
129
+ rubocop (~> 1.41)
130
+ rubocop-performance (1.15.2)
131
+ rubocop (>= 1.7.0, < 2.0)
132
+ rubocop-ast (>= 0.4.0)
133
+ rubocop-rspec (2.18.1)
134
+ rubocop (~> 1.33)
135
+ rubocop-capybara (~> 2.17)
136
+ ruby-progressbar (1.11.0)
137
+ ruby2_keywords (0.0.5)
138
+ simplecov (0.22.0)
139
+ docile (~> 1.1)
140
+ simplecov-html (~> 0.11)
141
+ simplecov_json_formatter (~> 0.1)
142
+ simplecov-html (0.12.3)
143
+ simplecov_json_formatter (0.1.4)
144
+ solargraph (0.48.0)
145
+ backport (~> 1.2)
146
+ benchmark
147
+ bundler (>= 1.17.2)
148
+ diff-lcs (~> 1.4)
149
+ e2mmap
150
+ jaro_winkler (~> 1.5)
151
+ kramdown (~> 2.3)
152
+ kramdown-parser-gfm (~> 1.1)
153
+ parser (~> 3.0)
154
+ reverse_markdown (>= 1.0.5, < 3)
155
+ rubocop (>= 0.52)
156
+ thor (~> 1.0)
157
+ tilt (~> 2.0)
158
+ yard (~> 0.9, >= 0.9.24)
159
+ thor (1.2.1)
160
+ tilt (2.0.11)
161
+ timers (4.3.5)
162
+ traces (0.8.0)
163
+ unicode-display_width (2.4.2)
164
+ uri_template (0.7.0)
165
+ webmock (3.18.1)
166
+ addressable (>= 2.8.0)
167
+ crack (>= 0.3.2)
168
+ hashdiff (>= 0.4.0, < 2.0.0)
169
+ webrick (1.7.0)
170
+ yard (0.9.28)
171
+ webrick (~> 1.7.0)
172
+ zeitwerk (2.6.6)
173
+ zilla (0.1.2)
174
+ faraday (~> 2.7.0)
175
+ json_schemer (~> 0.2.0)
176
+ memery (~> 1.4.0)
177
+ oj (~> 3.13.0)
178
+ zeitwerk (~> 2.6.0)
179
+
180
+ PLATFORMS
181
+ x86_64-linux
182
+
183
+ DEPENDENCIES
184
+ async-rspec
185
+ kubezilla!
186
+ overcommit
187
+ rake
188
+ rspec
189
+ rubocop
190
+ rubocop-performance
191
+ rubocop-rspec
192
+ simplecov
193
+ solargraph
194
+ webmock
195
+
196
+ BUNDLED WITH
197
+ 2.4.1
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2023 Gleb Sinyavskiy
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,39 @@
1
+ # Kubezilla
2
+
3
+ TODO: Delete this and the text below, and describe your gem
4
+
5
+ Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/kubezilla`. To experiment with that code, run `bin/console` for an interactive prompt.
6
+
7
+ ## Installation
8
+
9
+ TODO: Replace `UPDATE_WITH_YOUR_GEM_NAME_PRIOR_TO_RELEASE_TO_RUBYGEMS_ORG` with your gem name right after releasing it to RubyGems.org. Please do not do it earlier due to security reasons. Alternatively, replace this section with instructions to install your gem from git if you don't plan to release to RubyGems.org.
10
+
11
+ Install the gem and add to the application's Gemfile by executing:
12
+
13
+ $ bundle add UPDATE_WITH_YOUR_GEM_NAME_PRIOR_TO_RELEASE_TO_RUBYGEMS_ORG
14
+
15
+ If bundler is not being used to manage dependencies, install the gem by executing:
16
+
17
+ $ gem install UPDATE_WITH_YOUR_GEM_NAME_PRIOR_TO_RELEASE_TO_RUBYGEMS_ORG
18
+
19
+ ## Usage
20
+
21
+ TODO: Write usage instructions here
22
+
23
+ ## Development
24
+
25
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
26
+
27
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org).
28
+
29
+ ## Contributing
30
+
31
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/kubezilla. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/[USERNAME]/kubezilla/blob/main/CODE_OF_CONDUCT.md).
32
+
33
+ ## License
34
+
35
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
36
+
37
+ ## Code of Conduct
38
+
39
+ Everyone interacting in the Kubezilla project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/kubezilla/blob/main/CODE_OF_CONDUCT.md).
data/Rakefile ADDED
@@ -0,0 +1,12 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "bundler/gem_tasks"
4
+ require "rspec/core/rake_task"
5
+
6
+ RSpec::Core::RakeTask.new(:spec)
7
+
8
+ require "rubocop/rake_task"
9
+
10
+ RuboCop::RakeTask.new
11
+
12
+ task default: [:spec, :rubocop]
data/exe/kubezilla ADDED
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
3
+
4
+ require "kubezilla"
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Kubezilla
4
+ VERSION = "0.1.0"
5
+ end
data/lib/kubezilla.rb ADDED
@@ -0,0 +1,14 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "zilla"
4
+ require "memery"
5
+ require "zeitwerk"
6
+
7
+ loader = Zeitwerk::Loader.for_gem
8
+
9
+ class Kubezilla::Error < StandardError
10
+ # Your code goes here...
11
+ end
12
+
13
+ loader.setup
14
+ loader.eager_load
metadata ADDED
@@ -0,0 +1,130 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: kubezilla
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Gleb Sinyavskiy
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2023-01-30 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: async
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: 2.3.0
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: 2.3.0
27
+ - !ruby/object:Gem::Dependency
28
+ name: async-http-faraday
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '0.11'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '0.11'
41
+ - !ruby/object:Gem::Dependency
42
+ name: memery
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: 1.4.0
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: 1.4.0
55
+ - !ruby/object:Gem::Dependency
56
+ name: zeitwerk
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: 2.6.0
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: 2.6.0
69
+ - !ruby/object:Gem::Dependency
70
+ name: zilla
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: 0.1.2
76
+ type: :runtime
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: 0.1.2
83
+ description: Watches for image updates and automatically deploys new versions.
84
+ email:
85
+ - zhulik.gleb@gmail.com
86
+ executables:
87
+ - kubezilla
88
+ extensions: []
89
+ extra_rdoc_files: []
90
+ files:
91
+ - ".overcommit.yml"
92
+ - ".rspec"
93
+ - ".rubocop.yml"
94
+ - CODE_OF_CONDUCT.md
95
+ - Gemfile
96
+ - Gemfile.lock
97
+ - LICENSE.txt
98
+ - README.md
99
+ - Rakefile
100
+ - exe/kubezilla
101
+ - lib/kubezilla.rb
102
+ - lib/kubezilla/version.rb
103
+ homepage: https://github.com/zhulik/kubezilla
104
+ licenses:
105
+ - MIT
106
+ metadata:
107
+ homepage_uri: https://github.com/zhulik/kubezilla
108
+ source_code_uri: https://github.com/zhulik/kubezilla
109
+ changelog_uri: https://github.com/zhulik/kubezilla/releases
110
+ rubygems_mfa_required: 'true'
111
+ post_install_message:
112
+ rdoc_options: []
113
+ require_paths:
114
+ - lib
115
+ required_ruby_version: !ruby/object:Gem::Requirement
116
+ requirements:
117
+ - - ">="
118
+ - !ruby/object:Gem::Version
119
+ version: 3.2.0
120
+ required_rubygems_version: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - ">="
123
+ - !ruby/object:Gem::Version
124
+ version: '0'
125
+ requirements: []
126
+ rubygems_version: 3.4.1
127
+ signing_key:
128
+ specification_version: 4
129
+ summary: Watches for image updates and automatically deploys new versions.
130
+ test_files: []