Skip to content

Commit 5591f02

Browse files
authored
Merge pull request #8 from EncoreTechnologies/feature/pdk
Converting to PDK
2 parents a6d991e + de12ecf commit 5591f02

31 files changed

+796
-280
lines changed

.fixtures.yml

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# This file can be used to install module dependencies for unit testing
2+
# See https://github.com/puppetlabs/puppetlabs_spec_helper#using-fixtures for details
3+
---
4+
fixtures:
5+
forge_modules:
6+
# stdlib: "puppetlabs/stdlib"

.gitattributes

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
*.rb eol=lf
2+
*.erb eol=lf
3+
*.pp eol=lf
4+
*.sh eol=lf
5+
*.epp eol=lf

.gitignore

+31-18
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,35 @@
1-
*.iml
1+
.git/
22
.*.sw[op]
3-
.DS_Store
4-
.bundle/
5-
.idea/
63
.metadata
7-
.vagrant/
84
.yardoc
95
.yardwarns
10-
Gemfile.local
11-
Gemfile.lock
12-
bin/
13-
coverage/
14-
doc/
15-
junit/
16-
log/
17-
pkg/
18-
spec/fixtures/manifests/
19-
spec/fixtures/modules/
20-
tmp/
21-
vendor/
22-
6+
*.iml
7+
/.bundle/
8+
/.idea/
9+
/.vagrant/
10+
/coverage/
11+
/bin/
12+
/doc/
13+
/Gemfile.local
14+
/Gemfile.lock
15+
/junit/
16+
/log/
17+
/pkg/
18+
/spec/fixtures/manifests/
19+
/spec/fixtures/modules/
20+
/tmp/
21+
/vendor/
22+
/convert_report.txt
23+
/update_report.txt
24+
.DS_Store
25+
.project
26+
.envrc
27+
/inventory.yaml
28+
.rerun.json
29+
.librarian
30+
.kitchen
31+
.tmp
32+
.bundle
33+
bolt.log
34+
Puppetfile.lock
35+
modules

.pdkignore

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
.git/
2+
.*.sw[op]
3+
.metadata
4+
.yardoc
5+
.yardwarns
6+
*.iml
7+
/.bundle/
8+
/.idea/
9+
/.vagrant/
10+
/coverage/
11+
/bin/
12+
/doc/
13+
/Gemfile.local
14+
/Gemfile.lock
15+
/junit/
16+
/log/
17+
/pkg/
18+
/spec/fixtures/manifests/
19+
/spec/fixtures/modules/
20+
/tmp/
21+
/vendor/
22+
/convert_report.txt
23+
/update_report.txt
24+
.DS_Store
25+
.project
26+
.envrc
27+
/inventory.yaml
28+
/appveyor.yml
29+
/.fixtures.yml
30+
/Gemfile
31+
/.gitattributes
32+
/.gitignore
33+
/.gitlab-ci.yml
34+
/.pdkignore
35+
/Rakefile
36+
/rakelib/
37+
/.rspec
38+
/.rubocop.yml
39+
/.travis.yml
40+
/.yardopts
41+
/spec/
42+
/.vscode/

.puppet-lint.rc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
--relative

.rspec

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
--color
2+
--format documentation

.rubocop.yml

+126-16
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,133 @@
1+
---
2+
require:
3+
- rubocop-rspec
4+
- rubocop-i18n
15
AllCops:
2-
Exclude:
3-
- spec/fixtures/modules/**
46
DisplayCopNames: true
5-
DisplayStyleGuide: true
6-
7+
TargetRubyVersion: '2.1'
8+
Include:
9+
- "./**/*.rb"
10+
Exclude:
11+
- bin/*
12+
- ".vendor/**/*"
13+
- "**/Gemfile"
14+
- "**/Rakefile"
15+
- pkg/**/*
16+
- spec/fixtures/**/*
17+
- vendor/**/*
18+
- "**/Puppetfile"
19+
- "**/Vagrantfile"
20+
- "**/Guardfile"
21+
Metrics/LineLength:
22+
Description: People have wide screens, use them.
23+
Max: 200
24+
GetText:
25+
Enabled: false
26+
GetText/DecorateString:
27+
Description: We don't want to decorate test output.
28+
Exclude:
29+
- spec/**/*
30+
Enabled: false
31+
RSpec/BeforeAfterAll:
32+
Description: Beware of using after(:all) as it may cause state to leak between tests.
33+
A necessary evil in acceptance testing.
34+
Exclude:
35+
- spec/acceptance/**/*.rb
36+
RSpec/HookArgument:
37+
Description: Prefer explicit :each argument, matching existing module's style
38+
EnforcedStyle: each
39+
Style/BlockDelimiters:
40+
Description: Prefer braces for chaining. Mostly an aesthetical choice. Better to
41+
be consistent then.
42+
EnforcedStyle: braces_for_chaining
743
Style/ClassAndModuleChildren:
44+
Description: Compact style reduces the required amount of indentation.
845
EnforcedStyle: compact
9-
46+
Style/EmptyElse:
47+
Description: Enforce against empty else clauses, but allow `nil` for clarity.
48+
EnforcedStyle: empty
49+
Style/FormatString:
50+
Description: Following the main puppet project's style, prefer the % format format.
51+
EnforcedStyle: percent
52+
Style/FormatStringToken:
53+
Description: Following the main puppet project's style, prefer the simpler template
54+
tokens over annotated ones.
55+
EnforcedStyle: template
56+
Style/Lambda:
57+
Description: Prefer the keyword for easier discoverability.
58+
EnforcedStyle: literal
59+
Style/RegexpLiteral:
60+
Description: Community preference. See https://github.com/voxpupuli/modulesync_config/issues/168
61+
EnforcedStyle: percent_r
62+
Style/TernaryParentheses:
63+
Description: Checks for use of parentheses around ternary conditions. Enforce parentheses
64+
on complex expressions for better readability, but seriously consider breaking
65+
it up.
66+
EnforcedStyle: require_parentheses_when_complex
67+
Style/TrailingCommaInArguments:
68+
Description: Prefer always trailing comma on multiline argument lists. This makes
69+
diffs, and re-ordering nicer.
70+
EnforcedStyleForMultiline: comma
71+
Style/TrailingCommaInLiteral:
72+
Description: Prefer always trailing comma on multiline literals. This makes diffs,
73+
and re-ordering nicer.
74+
EnforcedStyleForMultiline: comma
1075
Style/SymbolArray:
76+
Description: Using percent style obscures symbolic intent of array's contents.
77+
EnforcedStyle: brackets
78+
RSpec/MessageSpies:
79+
EnforcedStyle: receive
80+
Style/Documentation:
81+
Exclude:
82+
- lib/puppet/parser/functions/**/*
83+
- spec/**/*
84+
Style/WordArray:
85+
EnforcedStyle: brackets
86+
Style/CollectionMethods:
87+
Enabled: true
88+
Style/MethodCalledOnDoEndBlock:
89+
Enabled: true
90+
Style/StringMethods:
91+
Enabled: true
92+
GetText/DecorateFunctionMessage:
93+
Enabled: false
94+
GetText/DecorateStringFormattingUsingInterpolation:
95+
Enabled: false
96+
GetText/DecorateStringFormattingUsingPercent:
97+
Enabled: false
98+
Layout/EndOfLine:
99+
Enabled: false
100+
Layout/IndentHeredoc:
101+
Enabled: false
102+
Metrics/AbcSize:
11103
Enabled: false
12-
13-
Metrics/MethodLength:
14-
Max: 20
15-
16104
Metrics/BlockLength:
17-
Max: 50
18-
19-
Metrics/LineLength:
20-
Max: 135
21-
22-
EndOfLine:
23-
Enabled: false
105+
Enabled: false
106+
Metrics/ClassLength:
107+
Enabled: false
108+
Metrics/CyclomaticComplexity:
109+
Enabled: false
110+
Metrics/MethodLength:
111+
Enabled: false
112+
Metrics/ModuleLength:
113+
Enabled: false
114+
Metrics/ParameterLists:
115+
Enabled: false
116+
Metrics/PerceivedComplexity:
117+
Enabled: false
118+
RSpec/DescribeClass:
119+
Enabled: false
120+
RSpec/ExampleLength:
121+
Enabled: false
122+
RSpec/MessageExpectation:
123+
Enabled: false
124+
RSpec/MultipleExpectations:
125+
Enabled: false
126+
RSpec/NestedGroups:
127+
Enabled: false
128+
Style/AsciiComments:
129+
Enabled: false
130+
Style/IfUnlessModifier:
131+
Enabled: false
132+
Style/SymbolProc:
133+
Enabled: false

.sync.yml

+56
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
---
2+
.gitignore:
3+
paths:
4+
- .rerun.json
5+
- .librarian
6+
- .kitchen
7+
- .tmp
8+
- .bundle
9+
- bolt.log
10+
- Puppetfile.lock
11+
- modules
12+
.gitlab-ci.yml:
13+
# we don't use GitLab
14+
unmanaged: true
15+
appveyor.yml:
16+
# we don't use Appveyor
17+
unmanaged: true
18+
Gemfile:
19+
required:
20+
':development':
21+
- gem: 'puppet-lint-absolute_template_path'
22+
version: '>= 1.0.1'
23+
- gem: 'puppet-lint-alias-check'
24+
version: '>= 0.1.1'
25+
- gem: 'puppet-lint-classes_and_types_beginning_with_digits-check'
26+
version: '>= 0.1.2'
27+
- gem: 'puppet-lint-concatenated_template_files-check'
28+
version: '>= 0.1.1'
29+
- gem: 'puppet-lint-file_ensure-check'
30+
version: '>= 0.3.1'
31+
- gem: 'puppet-lint-file_source_rights-check'
32+
version: '>= 0.1.1'
33+
- gem: 'puppet-lint-leading_zero-check'
34+
version: '>= 0.1.1'
35+
- gem: 'puppet-lint-resource_reference_syntax'
36+
version: '>= 1.0.10'
37+
- gem: 'puppet-lint-trailing_comma-check'
38+
version: '>= 0.3.2'
39+
- gem: 'puppet-lint-unquoted_string-check'
40+
version: '>= 0.3.0'
41+
- gem: 'puppet-lint-version_comparison-check'
42+
version: '>= 0.2.1'
43+
- gem: 'r10k'
44+
version: '>= 3.0.0'
45+
# cri is needed by r10k, but due to a bug in the cri gem v2.15.7 it breaks r10k
46+
# see: https://github.com/puppetlabs/r10k/issues/930
47+
- gem: 'cri'
48+
version: '2.15.6'
49+
- gem: 'yaml-lint'
50+
version: '>= 0.0.10'
51+
# Rakefile:
52+
# extras:
53+
# - "# exclude plans because puppet-syntax doesn't support them yet: https://github.com/voxpupuli/puppet-syntax/issues/95"
54+
# - 'PuppetSyntax.exclude_paths = ["plans/**/*", "vendor/**/*"]'
55+
spec/spec_helper.rb:
56+
mock_with: ':rspec'

.travis.yml

+49
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
---
2+
os: linux
3+
dist: xenial
4+
language: ruby
5+
cache: bundler
6+
before_install:
7+
- bundle -v
8+
- rm -f Gemfile.lock
9+
- "# Update system gems if requested. This is useful to temporarily workaround troubles in the test runner"
10+
- "# See https://github.com/puppetlabs/pdk-templates/commit/705154d5c437796b821691b707156e1b056d244f for an example of how this was used"
11+
- "# Ignore exit code of SIGPIPE'd yes to not fail with shell's pipefail set"
12+
- '[ -z "$RUBYGEMS_VERSION" ] || (yes || true) | gem update --system $RUBYGEMS_VERSION'
13+
- gem --version
14+
- bundle -v
15+
script:
16+
- 'bundle exec rake $CHECK'
17+
bundler_args: --without system_tests
18+
rvm:
19+
- 2.5.7
20+
stages:
21+
- static
22+
- spec
23+
- acceptance
24+
-
25+
if: tag =~ ^v\d
26+
name: deploy
27+
jobs:
28+
fast_finish: true
29+
include:
30+
-
31+
env: CHECK="check:symlinks check:git_ignore check:dot_underscore check:test_file rubocop syntax lint metadata_lint"
32+
stage: static
33+
-
34+
env: PUPPET_GEM_VERSION="~> 5.0" CHECK=parallel_spec
35+
rvm: 2.4.5
36+
stage: spec
37+
-
38+
env: PUPPET_GEM_VERSION="~> 6.0" CHECK=parallel_spec
39+
rvm: 2.5.7
40+
stage: spec
41+
-
42+
env: DEPLOY_TO_FORGE=yes
43+
stage: deploy
44+
branches:
45+
only:
46+
- master
47+
- /^v\d/
48+
notifications:
49+
email: false

.vscode/extensions.json

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"recommendations": [
3+
"jpogran.puppet-vscode",
4+
"rebornix.Ruby"
5+
]
6+
}

.yardopts

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
--markup markdown

0 commit comments

Comments
 (0)