File tree 5 files changed +12
-9
lines changed
5 files changed +12
-9
lines changed Original file line number Diff line number Diff line change 2
2
# Managed by modulesync - DO NOT EDIT
3
3
# https://voxpupuli.org/docs/updating-files-managed-with-modulesync/
4
4
5
- modulesync_config_version : ' 4.2 .0'
5
+ modulesync_config_version : ' 5.1 .0'
Original file line number Diff line number Diff line change
1
+ --fail-on-warnings
2
+ --no-parameter_documentation-check
3
+ --no-parameter_types-check
Original file line number Diff line number Diff line change 4
4
source ENV [ 'GEM_SOURCE' ] || "https://rubygems.org"
5
5
6
6
group :test do
7
- gem 'voxpupuli-test' , '~> 2.5 ' , :require => false
7
+ gem 'voxpupuli-test' , '~> 5.0 ' , :require => false
8
8
gem 'coveralls' , :require => false
9
9
gem 'simplecov-console' , :require => false
10
10
gem 'puppet_metadata' , '~> 1.0' , :require => false
21
21
22
22
group :release do
23
23
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
25
25
gem 'puppet-strings' , '>= 2.2' , :require => false
26
26
end
27
27
Original file line number Diff line number Diff line change 1
1
# Managed by modulesync - DO NOT EDIT
2
2
# https://voxpupuli.org/docs/updating-files-managed-with-modulesync/
3
3
4
- # Attempt to load voxupuli -test (which pulls in puppetlabs_spec_helper),
4
+ # Attempt to load voxpupuli -test (which pulls in puppetlabs_spec_helper),
5
5
# otherwise attempt to load it directly.
6
6
begin
7
7
require 'voxpupuli/test/rake'
Original file line number Diff line number Diff line change
1
+ # frozen_string_literal: true
2
+
1
3
# Managed by modulesync - DO NOT EDIT
2
4
# https://voxpupuli.org/docs/updating-files-managed-with-modulesync/
3
5
4
6
# puppetlabs_spec_helper will set up coverage if the env variable is set.
5
7
# 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__ ) )
7
9
8
10
require 'voxpupuli/test/spec_helper'
9
11
10
12
if File . exist? ( File . join ( __dir__ , 'default_module_facts.yml' ) )
11
13
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
16
16
end
17
17
end
You can’t perform that action at this time.
0 commit comments