1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
|
---
.rubocop.yml:
default_configs:
RSpec/SubjectStub:
Enabled: false
RSpec/NamedSubject:
Enabled: false
Style/Documentation:
Exclude:
- lib/puppet/parser/functions/**/*
- spec/**/*
- lib/puppet/type/**
- lib/puppet/provider/**
Gemfile:
optional:
":development":
- gem: beaker
version: '~> 4.30'
from_env: BEAKER_VERSION
- gem: beaker-abs
from_env: BEAKER_ABS_VERSION
version: '~> 0.9'
- gem: beaker-pe
- gem: beaker-hostgenerator
from_env: BEAKER_HOSTGENERATOR_VERSION
- gem: beaker-rspec
from_env: BEAKER_RSPEC_VERSION
- gem: beaker-puppet
from_env: BEAKER_PUPPET_VERSION
version: '~> 1.22'
- gem: github_changelog_generator
- gem: beaker-module_install_helper
- gem: beaker-puppet_install_helper
- gem: nokogiri
appveyor.yml:
delete: true
.travis.yml:
delete: true
.github/workflows/auto_release.yml:
unmanaged: false
.github/workflows/release.yml:
unmanaged: false
.gitlab-ci.yml:
delete: true
|