Skip to content

Commit 5161f08

Browse files
bastelfreaktraylenator
authored andcommitted
modulesync 5.1.0
1 parent 4400315 commit 5161f08

File tree

5 files changed

+12
-9
lines changed

5 files changed

+12
-9
lines changed

.msync.yml

+1-1
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: '4.2.0'
5+
modulesync_config_version: '5.1.0'

.puppet-lint.rc

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
--fail-on-warnings
2+
--no-parameter_documentation-check
3+
--no-parameter_types-check

Gemfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
source ENV['GEM_SOURCE'] || "https://rubygems.org"
55

66
group :test do
7-
gem 'voxpupuli-test', '~> 2.5', :require => false
7+
gem 'voxpupuli-test', '~> 5.0', :require => false
88
gem 'coveralls', :require => false
99
gem 'simplecov-console', :require => false
1010
gem 'puppet_metadata', '~> 1.0', :require => false
@@ -21,7 +21,7 @@ end
2121

2222
group :release do
2323
gem 'github_changelog_generator', '>= 1.16.1', :require => false if RUBY_VERSION >= '2.5'
24-
gem 'voxpupuli-release', '>= 1.0.2', :require => false
24+
gem 'voxpupuli-release', '>= 1.2.0', :require => false
2525
gem 'puppet-strings', '>= 2.2', :require => false
2626
end
2727

Rakefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Managed by modulesync - DO NOT EDIT
22
# https://voxpupuli.org/docs/updating-files-managed-with-modulesync/
33

4-
# Attempt to load voxupuli-test (which pulls in puppetlabs_spec_helper),
4+
# Attempt to load voxpupuli-test (which pulls in puppetlabs_spec_helper),
55
# otherwise attempt to load it directly.
66
begin
77
require 'voxpupuli/test/rake'

spec/spec_helper.rb

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
1+
# frozen_string_literal: true
2+
13
# Managed by modulesync - DO NOT EDIT
24
# https://voxpupuli.org/docs/updating-files-managed-with-modulesync/
35

46
# puppetlabs_spec_helper will set up coverage if the env variable is set.
57
# We want to do this if lib exists and it hasn't been explicitly set.
6-
ENV['COVERAGE'] ||= 'yes' if Dir.exist?(File.expand_path('../../lib', __FILE__))
8+
ENV['COVERAGE'] ||= 'yes' if Dir.exist?(File.expand_path('../lib', __dir__))
79

810
require 'voxpupuli/test/spec_helper'
911

1012
if File.exist?(File.join(__dir__, 'default_module_facts.yml'))
1113
facts = YAML.safe_load(File.read(File.join(__dir__, 'default_module_facts.yml')))
12-
if facts
13-
facts.each do |name, value|
14-
add_custom_fact name.to_sym, value
15-
end
14+
facts&.each do |name, value|
15+
add_custom_fact name.to_sym, value
1616
end
1717
end

0 commit comments

Comments
 (0)