voxpupuli-release 1.0.2 → 1.3.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/release.yml +3 -2
- data/.github/workflows/test.yml +33 -0
- data/.gitignore +1 -0
- data/CHANGELOG.md +71 -22
- data/Gemfile +2 -2
- data/README.md +11 -9
- data/Rakefile +1 -1
- data/Rakefile_ci +3 -0
- data/lib/voxpupuli/release/rake_tasks.rb +13 -5
- data/lib/voxpupuli/release/version.rb +1 -1
- data/voxpupuli-release.gemspec +2 -1
- metadata +20 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 606f972169119f56967f77a587da869e0ce334f7c2a965641d0e5bdabcd18955
|
4
|
+
data.tar.gz: ce8bf749396849ba1716025a052c28c2b8aeb5798b7b97b10efac0772dc537df
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 19bf5446634ce655c31632e5b0e24b0b70256cf90d9f980a150a8ec78f3d8bf1f8e02797b704c76305ed3aca7477805286f9bd28718697becb25e759eaa26001
|
7
|
+
data.tar.gz: 9fd53026ed507a108ce7d1104eb908183c2403f104852af989c388f50d59cdb28422c698fba879788fd158a5e453fa57caa0b5215abd9e3290807b5760baf928
|
@@ -0,0 +1,33 @@
|
|
1
|
+
name: Test
|
2
|
+
|
3
|
+
on:
|
4
|
+
- pull_request
|
5
|
+
- push
|
6
|
+
|
7
|
+
env:
|
8
|
+
BUNDLE_WITHOUT: release
|
9
|
+
|
10
|
+
jobs:
|
11
|
+
test:
|
12
|
+
runs-on: ubuntu-latest
|
13
|
+
strategy:
|
14
|
+
fail-fast: false
|
15
|
+
matrix:
|
16
|
+
ruby:
|
17
|
+
- "2.4"
|
18
|
+
- "2.5"
|
19
|
+
- "2.6"
|
20
|
+
- "2.7"
|
21
|
+
- "3.0"
|
22
|
+
name: Ruby ${{ matrix.ruby }}
|
23
|
+
steps:
|
24
|
+
- uses: actions/checkout@v2
|
25
|
+
- name: Install Ruby ${{ matrix.ruby }}
|
26
|
+
uses: ruby/setup-ruby@v1
|
27
|
+
with:
|
28
|
+
ruby-version: ${{ matrix.ruby }}
|
29
|
+
bundler-cache: true
|
30
|
+
- name: Run tests
|
31
|
+
run: bundle exec rake --rakefile Rakefile_ci -T | grep release
|
32
|
+
- name: Verify gem builds
|
33
|
+
run: gem build *.gemspec
|
data/.gitignore
CHANGED
data/CHANGELOG.md
CHANGED
@@ -2,51 +2,100 @@
|
|
2
2
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
4
4
|
|
5
|
-
## [v1.0
|
5
|
+
## [v1.3.0](https://github.com/voxpupuli/voxpupuli-release/tree/v1.3.0) (2021-12-08)
|
6
6
|
|
7
|
-
[Full Changelog](https://github.com/voxpupuli/voxpupuli-release
|
7
|
+
[Full Changelog](https://github.com/voxpupuli/voxpupuli-release/compare/v1.2.1...v1.3.0)
|
8
|
+
|
9
|
+
**Implemented enhancements:**
|
10
|
+
|
11
|
+
- Allow no 'v' in release version [\#41](https://github.com/voxpupuli/voxpupuli-release/pull/41) ([smortex](https://github.com/smortex))
|
12
|
+
- Validate REFERENCE.md if it exists [\#39](https://github.com/voxpupuli/voxpupuli-release/pull/39) ([bastelfreak](https://github.com/bastelfreak))
|
13
|
+
|
14
|
+
## [v1.2.1](https://github.com/voxpupuli/voxpupuli-release/tree/v1.2.1) (2021-10-29)
|
15
|
+
|
16
|
+
[Full Changelog](https://github.com/voxpupuli/voxpupuli-release/compare/v1.2.0...v1.2.1)
|
17
|
+
|
18
|
+
between the 1.2.0 and 1.2.1 release renamed the repository from voxpupuli-release-gem to voxpupuli-release. The previous name was inconsistent with the gem name and that blocked releases to github packages. The 1.2.1 release only happens to get a release to github packages. The code is identical to 1.2.0.
|
19
|
+
|
20
|
+
**Closed issues:**
|
21
|
+
|
22
|
+
- Rename the repository from voxpupuli-release-gem to voxpupuli-release [\#35](https://github.com/voxpupuli/voxpupuli-release/issues/35)
|
23
|
+
|
24
|
+
## [v1.2.0](https://github.com/voxpupuli/voxpupuli-release/tree/v1.2.0) (2021-10-28)
|
25
|
+
|
26
|
+
[Full Changelog](https://github.com/voxpupuli/voxpupuli-release/compare/v1.1.0...v1.2.0)
|
27
|
+
|
28
|
+
**Implemented enhancements:**
|
29
|
+
|
30
|
+
- Cleanup references to Travis CI in rake tasks [\#32](https://github.com/voxpupuli/voxpupuli-release/pull/32) ([genebean](https://github.com/genebean))
|
31
|
+
|
32
|
+
**Fixed bugs:**
|
33
|
+
|
34
|
+
- Fix syntax highlighting & add warning to travis\_release [\#33](https://github.com/voxpupuli/voxpupuli-release/pull/33) ([ekohl](https://github.com/ekohl))
|
35
|
+
|
36
|
+
**Merged pull requests:**
|
37
|
+
|
38
|
+
- Enable basic gem testing [\#31](https://github.com/voxpupuli/voxpupuli-release/pull/31) ([bastelfreak](https://github.com/bastelfreak))
|
39
|
+
- gemspec: switch to https URLs [\#30](https://github.com/voxpupuli/voxpupuli-release/pull/30) ([bastelfreak](https://github.com/bastelfreak))
|
40
|
+
|
41
|
+
## [v1.1.0](https://github.com/voxpupuli/voxpupuli-release/tree/v1.1.0) (2021-10-15)
|
42
|
+
|
43
|
+
[Full Changelog](https://github.com/voxpupuli/voxpupuli-release/compare/v1.0.2...v1.1.0)
|
44
|
+
|
45
|
+
**Implemented enhancements:**
|
46
|
+
|
47
|
+
- Add `github_release` alias for `travis_release` task [\#28](https://github.com/voxpupuli/voxpupuli-release/pull/28) ([bastelfreak](https://github.com/bastelfreak))
|
48
|
+
|
49
|
+
**Fixed bugs:**
|
50
|
+
|
51
|
+
- fix wrong syntax in GitHub actions [\#27](https://github.com/voxpupuli/voxpupuli-release/pull/27) ([bastelfreak](https://github.com/bastelfreak))
|
52
|
+
|
53
|
+
## [v1.0.2](https://github.com/voxpupuli/voxpupuli-release/tree/v1.0.2) (2021-07-30)
|
54
|
+
|
55
|
+
[Full Changelog](https://github.com/voxpupuli/voxpupuli-release/compare/v1.0.1...v1.0.2)
|
8
56
|
|
9
57
|
**Fixed bugs:**
|
10
58
|
|
11
|
-
- directly load
|
59
|
+
- directly load blacksmith rake tasks [\#25](https://github.com/voxpupuli/voxpupuli-release/pull/25) ([bastelfreak](https://github.com/bastelfreak))
|
12
60
|
|
13
61
|
**Merged pull requests:**
|
14
62
|
|
15
|
-
-
|
63
|
+
- Update release workflow + docs / Release 1.0.2 [\#26](https://github.com/voxpupuli/voxpupuli-release/pull/26) ([bastelfreak](https://github.com/bastelfreak))
|
64
|
+
- Convert from Travis to Github Actions [\#24](https://github.com/voxpupuli/voxpupuli-release/pull/24) ([ekohl](https://github.com/ekohl))
|
16
65
|
|
17
|
-
## [v1.0.1](https://github.com/voxpupuli/voxpupuli-release
|
66
|
+
## [v1.0.1](https://github.com/voxpupuli/voxpupuli-release/tree/v1.0.1) (2019-09-02)
|
18
67
|
|
19
|
-
[Full Changelog](https://github.com/voxpupuli/voxpupuli-release
|
68
|
+
[Full Changelog](https://github.com/voxpupuli/voxpupuli-release/compare/v1.0.0...v1.0.1)
|
20
69
|
|
21
70
|
**Fixed bugs:**
|
22
71
|
|
23
|
-
- set a message pattern for new releases [\#22](https://github.com/voxpupuli/voxpupuli-release
|
72
|
+
- set a message pattern for new releases [\#22](https://github.com/voxpupuli/voxpupuli-release/pull/22) ([bastelfreak](https://github.com/bastelfreak))
|
24
73
|
|
25
|
-
## [v1.0.0](https://github.com/voxpupuli/voxpupuli-release
|
74
|
+
## [v1.0.0](https://github.com/voxpupuli/voxpupuli-release/tree/v1.0.0) (2019-08-31)
|
26
75
|
|
27
|
-
[Full Changelog](https://github.com/voxpupuli/voxpupuli-release
|
76
|
+
[Full Changelog](https://github.com/voxpupuli/voxpupuli-release/compare/f45adfe1cdb31bcc289fa4b80ac392235a00ffc6...v1.0.0)
|
28
77
|
|
29
78
|
**Implemented enhancements:**
|
30
79
|
|
31
|
-
- sign tags with gpg [\#20](https://github.com/voxpupuli/voxpupuli-release
|
80
|
+
- sign tags with gpg [\#20](https://github.com/voxpupuli/voxpupuli-release/pull/20) ([bastelfreak](https://github.com/bastelfreak))
|
32
81
|
|
33
82
|
**Closed issues:**
|
34
83
|
|
35
|
-
- expand travis\_release [\#2](https://github.com/voxpupuli/voxpupuli-release
|
36
|
-
- this gem should be renamed [\#1](https://github.com/voxpupuli/voxpupuli-release
|
84
|
+
- expand travis\_release [\#2](https://github.com/voxpupuli/voxpupuli-release/issues/2)
|
85
|
+
- this gem should be renamed [\#1](https://github.com/voxpupuli/voxpupuli-release/issues/1)
|
37
86
|
|
38
87
|
**Merged pull requests:**
|
39
88
|
|
40
|
-
- Use has\_version\_tag? from puppet-blacksmith [\#16](https://github.com/voxpupuli/voxpupuli-release
|
41
|
-
- Proper pre-release version string [\#15](https://github.com/voxpupuli/voxpupuli-release
|
42
|
-
- Release candidate 0.4.0-rc0 [\#14](https://github.com/voxpupuli/voxpupuli-release
|
43
|
-
- Expand acceptable changelog release format [\#12](https://github.com/voxpupuli/voxpupuli-release
|
44
|
-
- dont expect whitespace before release number [\#10](https://github.com/voxpupuli/voxpupuli-release
|
45
|
-
- Describe how to cut a release [\#9](https://github.com/voxpupuli/voxpupuli-release
|
46
|
-
- fix\(changelog\) make changelog checking more flexible [\#8](https://github.com/voxpupuli/voxpupuli-release
|
47
|
-
- fix\(loading\) complete renaming by correctly moving files into subdirs [\#7](https://github.com/voxpupuli/voxpupuli-release
|
48
|
-
- feat\(release\) bump RC version rather than patch [\#6](https://github.com/voxpupuli/voxpupuli-release
|
49
|
-
- chore \(rename\) Give our gem a more sensible name [\#5](https://github.com/voxpupuli/voxpupuli-release
|
89
|
+
- Use has\_version\_tag? from puppet-blacksmith [\#16](https://github.com/voxpupuli/voxpupuli-release/pull/16) ([ekohl](https://github.com/ekohl))
|
90
|
+
- Proper pre-release version string [\#15](https://github.com/voxpupuli/voxpupuli-release/pull/15) ([rnelson0](https://github.com/rnelson0))
|
91
|
+
- Release candidate 0.4.0-rc0 [\#14](https://github.com/voxpupuli/voxpupuli-release/pull/14) ([rnelson0](https://github.com/rnelson0))
|
92
|
+
- Expand acceptable changelog release format [\#12](https://github.com/voxpupuli/voxpupuli-release/pull/12) ([rnelson0](https://github.com/rnelson0))
|
93
|
+
- dont expect whitespace before release number [\#10](https://github.com/voxpupuli/voxpupuli-release/pull/10) ([bastelfreak](https://github.com/bastelfreak))
|
94
|
+
- Describe how to cut a release [\#9](https://github.com/voxpupuli/voxpupuli-release/pull/9) ([rnelson0](https://github.com/rnelson0))
|
95
|
+
- fix\(changelog\) make changelog checking more flexible [\#8](https://github.com/voxpupuli/voxpupuli-release/pull/8) ([igalic](https://github.com/igalic))
|
96
|
+
- fix\(loading\) complete renaming by correctly moving files into subdirs [\#7](https://github.com/voxpupuli/voxpupuli-release/pull/7) ([igalic](https://github.com/igalic))
|
97
|
+
- feat\(release\) bump RC version rather than patch [\#6](https://github.com/voxpupuli/voxpupuli-release/pull/6) ([igalic](https://github.com/igalic))
|
98
|
+
- chore \(rename\) Give our gem a more sensible name [\#5](https://github.com/voxpupuli/voxpupuli-release/pull/5) ([igalic](https://github.com/igalic))
|
50
99
|
|
51
100
|
|
52
101
|
|
data/Gemfile
CHANGED
@@ -2,6 +2,6 @@ source ENV['GEM_SOURCE'] || 'https://rubygems.org'
|
|
2
2
|
|
3
3
|
gemspec
|
4
4
|
|
5
|
-
group :release do
|
6
|
-
gem 'github_changelog_generator', '>= 1.16.1', :require => false
|
5
|
+
group :release, optional: true do
|
6
|
+
gem 'github_changelog_generator', '>= 1.16.1', :require => false if RUBY_VERSION >= '2.5.0'
|
7
7
|
end
|
data/README.md
CHANGED
@@ -1,16 +1,17 @@
|
|
1
|
-
#
|
1
|
+
# Vox Pupuli Release Gem
|
2
2
|
|
3
|
-
[![License](https://img.shields.io/github/license/voxpupuli/voxpupuli-release
|
4
|
-
[![Release](https://github.com/voxpupuli/voxpupuli-release
|
3
|
+
[![License](https://img.shields.io/github/license/voxpupuli/voxpupuli-release.svg)](https://github.com/voxpupuli/voxpupuli-releasem/blob/master/LICENSE)
|
4
|
+
[![Release](https://github.com/voxpupuli/voxpupuli-release/actions/workflows/release.yml/badge.svg)](https://github.com/voxpupuli/voxpupuli-release/actions/workflows/release.yml)
|
5
5
|
[![RubyGem Version](https://img.shields.io/gem/v/voxpupuli-release.svg)](https://rubygems.org/gems/voxpupuli-release)
|
6
6
|
[![RubyGem Downloads](https://img.shields.io/gem/dt/voxpupuli-release.svg)](https://rubygems.org/gems/voxpupuli-release)
|
7
7
|
|
8
8
|
This is a helper Gem for the Vox Pupuli release workflow. This Gem currently serves only to encapsulate common `rake` tasks related to releasing modules.
|
9
9
|
|
10
|
-
|
10
|
+
## Usage
|
11
|
+
|
11
12
|
Add the `voxpupuli-release` Gem to your `Gemfile`:
|
12
13
|
|
13
|
-
```
|
14
|
+
```ruby
|
14
15
|
gem 'voxpupuli-release', git: 'https://github.com/voxpupuli/voxpupuli-release-gem'
|
15
16
|
```
|
16
17
|
|
@@ -22,8 +23,8 @@ require 'voxpupuli-release'
|
|
22
23
|
|
23
24
|
To cut a new release of your module, ensure the `metadata.json` reflects the proper version. Also ensure that the `CHANGELOG.md` has a note about the release and that it actually is named Release or release, some old modules refer to it as Version, which won't work. Lastly check that no tag exists with that version number (format `v#.#.#`), and then run:
|
24
25
|
|
25
|
-
```
|
26
|
-
bundle exec rake
|
26
|
+
```plain
|
27
|
+
bundle exec rake release
|
27
28
|
```
|
28
29
|
|
29
30
|
## License
|
@@ -33,9 +34,10 @@ This gem is licensed under the Apache-2 license.
|
|
33
34
|
## Release information
|
34
35
|
|
35
36
|
To make a new release, please do:
|
36
|
-
|
37
|
+
|
38
|
+
* update the version in `lib/voxpupuli/release/version.rb`
|
37
39
|
* Install gems with `bundle install --with release --path .vendor`
|
38
40
|
* generate the changelog with `bundle exec rake changelog`
|
39
41
|
* Check if the new version matches the closed issues/PRs in the changelog
|
40
42
|
* Create a PR with it
|
41
|
-
* After it got merged, push a tag. GitHub
|
43
|
+
* After it got merged, push a tag. GitHub Actions will do the actual release to Rubygems and GitHub Packages
|
data/Rakefile
CHANGED
@@ -16,7 +16,7 @@ begin
|
|
16
16
|
config.header = "# Changelog\n\nAll notable changes to this project will be documented in this file."
|
17
17
|
config.exclude_labels = %w{duplicate question invalid wontfix wont-fix skip-changelog}
|
18
18
|
config.user = 'voxpupuli'
|
19
|
-
config.project = 'voxpupuli-release
|
19
|
+
config.project = 'voxpupuli-release'
|
20
20
|
end
|
21
21
|
rescue LoadError
|
22
22
|
end
|
data/Rakefile_ci
ADDED
@@ -1,8 +1,7 @@
|
|
1
1
|
require 'puppet_blacksmith/rake_tasks'
|
2
2
|
|
3
|
-
desc '
|
4
|
-
task
|
5
|
-
|
3
|
+
desc 'Release via GitHub Actions'
|
4
|
+
task :release do
|
6
5
|
Blacksmith::RakeTask.new do |t|
|
7
6
|
t.build = false # do not build the module nor push it to the Forge
|
8
7
|
t.tag_sign = true # sign release with gpg
|
@@ -15,6 +14,8 @@ task "travis_release" do
|
|
15
14
|
raise "Refusing to release an RC or build-release (#{v}).\n" +
|
16
15
|
"Please set a semver *release* version." unless v =~ /^\d+\.\d+.\d+$/
|
17
16
|
|
17
|
+
# validate that the REFERENCE.md is up2date, if it exists
|
18
|
+
Rake::Task['strings:validate:reference'].invoke if File.exist?('REFERENCE.md')
|
18
19
|
Rake::Task[:check_changelog].invoke
|
19
20
|
# do a "manual" module:release (clean, tag, bump, commit, push tags)
|
20
21
|
Rake::Task["module:clean"].invoke
|
@@ -28,11 +29,17 @@ task "travis_release" do
|
|
28
29
|
ENV['BLACKSMITH_FULL_VERSION'] = v_new
|
29
30
|
Rake::Task["module:bump:full"].invoke
|
30
31
|
|
31
|
-
# push it out, and let
|
32
|
+
# push it out, and let GitHub Actions do the release:
|
32
33
|
g.commit_modulefile!(v_new)
|
33
34
|
g.push!
|
34
35
|
end
|
35
36
|
|
37
|
+
desc 'Depreciated: use the "release" task instead'
|
38
|
+
task "travis_release" do
|
39
|
+
STDERR.puts "Depreciated: use the 'release' task instead"
|
40
|
+
Rake::Task['release'].invoke
|
41
|
+
end
|
42
|
+
|
36
43
|
desc 'Check Changelog.'
|
37
44
|
task :check_changelog do
|
38
45
|
v = Blacksmith::Modulefile.new.version
|
@@ -40,7 +47,8 @@ task :check_changelog do
|
|
40
47
|
#
|
41
48
|
# ## 2016-11-20 Release 4.0.2
|
42
49
|
# ## [v4.0.3-rc0](https://github.com/voxpupuli/puppet-r10k/tree/v4.0.3-rc0) (2016-12-13)
|
43
|
-
|
50
|
+
# ## [2.1.0](https://github.com/opus-codium/puppet-odoo/tree/2.1.0) (2021-12-02)
|
51
|
+
if File.readlines('CHANGELOG.md').grep( /^(#.+[Rr]eleas.+#{Regexp.escape(v)}|## \[v?#{Regexp.escape(v)}\])/ ).empty?
|
44
52
|
fail "Unable to find a CHANGELOG.md entry for the #{v} release."
|
45
53
|
end
|
46
54
|
end
|
data/voxpupuli-release.gemspec
CHANGED
@@ -7,7 +7,7 @@ Gem::Specification.new do |s|
|
|
7
7
|
s.version = Voxpupuli::Release::VERSION
|
8
8
|
s.authors = ['Vox Pupuli']
|
9
9
|
s.email = ['voxpupuli@groups.io']
|
10
|
-
s.homepage = '
|
10
|
+
s.homepage = 'https://github.com/voxpupuli/voxpupuli-release'
|
11
11
|
s.summary = 'Helpers for deploying Vox Pupuli modules'
|
12
12
|
s.description = s.summary
|
13
13
|
s.licenses = 'Apache-2.0'
|
@@ -19,4 +19,5 @@ Gem::Specification.new do |s|
|
|
19
19
|
# Runtime dependencies, but also probably dependencies of requiring projects
|
20
20
|
s.add_runtime_dependency 'rake'
|
21
21
|
s.add_runtime_dependency 'puppet-blacksmith', '>= 4.0.0'
|
22
|
+
s.add_runtime_dependency 'puppet-strings', '>= 2.9.0'
|
22
23
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: voxpupuli-release
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0
|
4
|
+
version: 1.3.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Vox Pupuli
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-12-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rake
|
@@ -38,6 +38,20 @@ dependencies:
|
|
38
38
|
- - ">="
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: 4.0.0
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: puppet-strings
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ">="
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: 2.9.0
|
48
|
+
type: :runtime
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ">="
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: 2.9.0
|
41
55
|
description: Helpers for deploying Vox Pupuli modules
|
42
56
|
email:
|
43
57
|
- voxpupuli@groups.io
|
@@ -47,17 +61,19 @@ extra_rdoc_files: []
|
|
47
61
|
files:
|
48
62
|
- ".github/dependabot.yml"
|
49
63
|
- ".github/workflows/release.yml"
|
64
|
+
- ".github/workflows/test.yml"
|
50
65
|
- ".gitignore"
|
51
66
|
- CHANGELOG.md
|
52
67
|
- Gemfile
|
53
68
|
- LICENSE
|
54
69
|
- README.md
|
55
70
|
- Rakefile
|
71
|
+
- Rakefile_ci
|
56
72
|
- lib/voxpupuli/release.rb
|
57
73
|
- lib/voxpupuli/release/rake_tasks.rb
|
58
74
|
- lib/voxpupuli/release/version.rb
|
59
75
|
- voxpupuli-release.gemspec
|
60
|
-
homepage:
|
76
|
+
homepage: https://github.com/voxpupuli/voxpupuli-release
|
61
77
|
licenses:
|
62
78
|
- Apache-2.0
|
63
79
|
metadata: {}
|
@@ -76,7 +92,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
76
92
|
- !ruby/object:Gem::Version
|
77
93
|
version: '0'
|
78
94
|
requirements: []
|
79
|
-
rubygems_version: 3.2.
|
95
|
+
rubygems_version: 3.2.32
|
80
96
|
signing_key:
|
81
97
|
specification_version: 4
|
82
98
|
summary: Helpers for deploying Vox Pupuli modules
|