talos 1.0.1 → 1.0.3
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 +4 -4
- data/.github/workflows/gem-push.yml +3 -3
- data/.github/workflows/ruby.yml +2 -3
- data/catalog-info.yaml +7 -0
- data/talos.gemspec +4 -4
- metadata +8 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 27d6a64c10ae47120058fec950821c9c42375b10bcde049debc82f02f7ccc913
|
|
4
|
+
data.tar.gz: a1a69375bf585446d815e5c942f6b6e59b4bc29b9af4b8956f7cd435ac835c08
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 94ab4cc6b2b3e13a88881db80d75f4ef836662b88145bcc5b8d1af2a3efd4e0f6d347860643590c9716b0de549f342ecd0c9e69a3613460ef736cf104e8afb97
|
|
7
|
+
data.tar.gz: 230863d48635c96e21da0aa512682a9a2e0bd39ea37c3703c9f413a8084ca9ed084afef81f95de9ceee37050efaf44236744ba1cdd47a7f476035f8ceee16d16
|
|
@@ -15,10 +15,10 @@ jobs:
|
|
|
15
15
|
|
|
16
16
|
steps:
|
|
17
17
|
- uses: actions/checkout@v2
|
|
18
|
-
- name: Set up Ruby 2.
|
|
19
|
-
uses:
|
|
18
|
+
- name: Set up Ruby 2.7
|
|
19
|
+
uses: ruby/setup-ruby@v1
|
|
20
20
|
with:
|
|
21
|
-
ruby-version: 2.
|
|
21
|
+
ruby-version: 2.7
|
|
22
22
|
|
|
23
23
|
- name: Publish to GPR
|
|
24
24
|
run: |
|
data/.github/workflows/ruby.yml
CHANGED
|
@@ -19,15 +19,14 @@ jobs:
|
|
|
19
19
|
runs-on: ubuntu-latest
|
|
20
20
|
strategy:
|
|
21
21
|
matrix:
|
|
22
|
-
ruby-version: ['2.
|
|
22
|
+
ruby-version: ['2.6', '2.7']
|
|
23
23
|
|
|
24
24
|
steps:
|
|
25
25
|
- uses: actions/checkout@v2
|
|
26
26
|
- name: Set up Ruby
|
|
27
27
|
# To automatically get bug fixes and new Ruby versions for ruby/setup-ruby,
|
|
28
28
|
# change this to (see https://github.com/ruby/setup-ruby#versioning):
|
|
29
|
-
|
|
30
|
-
uses: ruby/setup-ruby@473e4d8fe5dd94ee328fdfca9f8c9c7afc9dae5e
|
|
29
|
+
uses: ruby/setup-ruby@v1
|
|
31
30
|
with:
|
|
32
31
|
ruby-version: ${{ matrix.ruby-version }}
|
|
33
32
|
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
|
data/catalog-info.yaml
ADDED
data/talos.gemspec
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
|
-
s.version = '1.0.
|
|
2
|
+
s.version = '1.0.3'
|
|
3
3
|
s.name = 'talos'
|
|
4
|
-
s.authors = ['Alexey Lapitsky', 'Johan Haals']
|
|
5
|
-
s.email = '
|
|
4
|
+
s.authors = ['Alexey Lapitsky', 'Johan Haals', 'Wasabi']
|
|
5
|
+
s.email = 'wasabi@spotify.com'
|
|
6
6
|
s.summary = %q{Hiera secrets distribution over HTTP}
|
|
7
7
|
s.description = %q{Distribute compressed hiera yaml files to authenticated puppet clients over HTTP}
|
|
8
8
|
s.homepage = 'https://github.com/spotify/talos'
|
|
@@ -13,7 +13,7 @@ Gem::Specification.new do |s|
|
|
|
13
13
|
s.test_files = s.files.grep(%r{^(test|spec|features)/})
|
|
14
14
|
s.require_paths = ['lib']
|
|
15
15
|
|
|
16
|
-
s.add_dependency 'rack', '2.2.
|
|
16
|
+
s.add_dependency 'rack', '2.2.6.2'
|
|
17
17
|
s.add_dependency 'sinatra', '~> 2.2.0'
|
|
18
18
|
s.add_dependency 'hiera', '~> 3.6.0'
|
|
19
19
|
s.add_dependency 'minitar', '~> 0.9'
|
metadata
CHANGED
|
@@ -1,15 +1,16 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: talos
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Alexey Lapitsky
|
|
8
8
|
- Johan Haals
|
|
9
|
+
- Wasabi
|
|
9
10
|
autorequire:
|
|
10
11
|
bindir: bin
|
|
11
12
|
cert_chain: []
|
|
12
|
-
date:
|
|
13
|
+
date: 2023-02-23 00:00:00.000000000 Z
|
|
13
14
|
dependencies:
|
|
14
15
|
- !ruby/object:Gem::Dependency
|
|
15
16
|
name: rack
|
|
@@ -17,14 +18,14 @@ dependencies:
|
|
|
17
18
|
requirements:
|
|
18
19
|
- - '='
|
|
19
20
|
- !ruby/object:Gem::Version
|
|
20
|
-
version: 2.2.
|
|
21
|
+
version: 2.2.6.2
|
|
21
22
|
type: :runtime
|
|
22
23
|
prerelease: false
|
|
23
24
|
version_requirements: !ruby/object:Gem::Requirement
|
|
24
25
|
requirements:
|
|
25
26
|
- - '='
|
|
26
27
|
- !ruby/object:Gem::Version
|
|
27
|
-
version: 2.2.
|
|
28
|
+
version: 2.2.6.2
|
|
28
29
|
- !ruby/object:Gem::Dependency
|
|
29
30
|
name: sinatra
|
|
30
31
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -125,7 +126,7 @@ dependencies:
|
|
|
125
126
|
version: 2.2.0
|
|
126
127
|
description: Distribute compressed hiera yaml files to authenticated puppet clients
|
|
127
128
|
over HTTP
|
|
128
|
-
email:
|
|
129
|
+
email: wasabi@spotify.com
|
|
129
130
|
executables: []
|
|
130
131
|
extensions: []
|
|
131
132
|
extra_rdoc_files: []
|
|
@@ -138,6 +139,7 @@ files:
|
|
|
138
139
|
- LICENSE
|
|
139
140
|
- README.md
|
|
140
141
|
- Rakefile
|
|
142
|
+
- catalog-info.yaml
|
|
141
143
|
- config.ru
|
|
142
144
|
- lib/talos.rb
|
|
143
145
|
- spec/fixtures/hiera.yaml
|
|
@@ -171,7 +173,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
171
173
|
- !ruby/object:Gem::Version
|
|
172
174
|
version: '0'
|
|
173
175
|
requirements: []
|
|
174
|
-
rubygems_version: 3.
|
|
176
|
+
rubygems_version: 3.1.6
|
|
175
177
|
signing_key:
|
|
176
178
|
specification_version: 4
|
|
177
179
|
summary: Hiera secrets distribution over HTTP
|