Skip to content

Commit 62ace16

Browse files
authored
Merge pull request #46 from opus-codium/modulesync
2 parents 20c6a42 + c3eec39 commit 62ace16

File tree

6 files changed

+34
-15
lines changed

6 files changed

+34
-15
lines changed

.github/release.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
---
2+
# Managed by modulesync - DO NOT EDIT
3+
# https://voxpupuli.org/docs/updating-files-managed-with-modulesync/
4+
5+
# https://docs.github.com/en/repositories/releasing-projects-on-github/automatically-generated-release-notes
6+
7+
changelog:
8+
exclude:
9+
labels:
10+
- duplicate
11+
- invalid
12+
- modulesync
13+
- question
14+
- skip-changelog
15+
- wont-fix
16+
- wontfix
17+
18+
categories:
19+
- title: Breaking changes
20+
labels:
21+
- backwards-incompatible
22+
23+
- title: Implemented enhancements
24+
labels:
25+
- enhancement
26+
27+
- title: Fixed bugs
28+
labels:
29+
- bug

.msync.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
# Managed by modulesync - DO NOT EDIT
33
# https://voxpupuli.org/docs/updating-files-managed-with-modulesync/
44

5-
modulesync_config_version: '9.0.0'
5+
modulesync_config_version: '9.5.0'

.rspec

Lines changed: 0 additions & 5 deletions
This file was deleted.

.rspec_parallel

Lines changed: 0 additions & 4 deletions
This file was deleted.

.yardopts

Lines changed: 0 additions & 1 deletion
This file was deleted.

Gemfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
source ENV['GEM_SOURCE'] || 'https://rubygems.org'
55

66
group :test do
7-
gem 'voxpupuli-test', '~> 8.0', :require => false
7+
gem 'voxpupuli-test', '~> 9.0', :require => false
88
gem 'coveralls', :require => false
99
gem 'simplecov-console', :require => false
10-
gem 'puppet_metadata', '~> 4.0', :require => false
10+
gem 'puppet_metadata', '~> 5.0', :require => false
1111
end
1212

1313
group :development do
@@ -16,7 +16,7 @@ group :development do
1616
end
1717

1818
group :system_tests do
19-
gem 'voxpupuli-acceptance', '~> 3.0', :require => false
19+
gem 'voxpupuli-acceptance', '~> 3.5', :require => false
2020
end
2121

2222
group :release do
@@ -26,7 +26,7 @@ end
2626
gem 'rake', :require => false
2727
gem 'facter', ENV['FACTER_GEM_VERSION'], :require => false, :groups => [:test]
2828

29-
puppetversion = ENV['PUPPET_GEM_VERSION'] || "~> 7.24"
29+
puppetversion = ENV['PUPPET_GEM_VERSION'] || [">= 7.24", "< 9"]
3030
gem 'puppet', puppetversion, :require => false, :groups => [:test]
3131

3232
# vim: syntax=ruby

0 commit comments

Comments
 (0)