aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Meusel <tim@bastelfreak.de>2019-12-22 01:13:42 +0100
committerTim Meusel <tim@bastelfreak.de>2019-12-22 01:13:42 +0100
commit85f632bead2bb98aff2df3b27f4b11d728459eae (patch)
tree2e22ea7a40734011f8f6ecc46c74e2afb388f51d
parent5963fbe43946825177a52bf875405cb8199df6e3 (diff)
downloadpuppet-ferm-85f632bead2bb98aff2df3b27f4b11d728459eae.tar.gz
puppet-ferm-85f632bead2bb98aff2df3b27f4b11d728459eae.tar.bz2
modulesync 2.10.0
-rw-r--r--.msync.yml2
-rw-r--r--.rubocop.yml2
-rw-r--r--.travis.yml4
-rw-r--r--Gemfile2
-rw-r--r--Rakefile10
5 files changed, 5 insertions, 15 deletions
diff --git a/.msync.yml b/.msync.yml
index a7c0bbf..11aed5f 100644
--- a/.msync.yml
+++ b/.msync.yml
@@ -1 +1 @@
-modulesync_config_version: '2.9.0'
+modulesync_config_version: '2.10.0'
diff --git a/.rubocop.yml b/.rubocop.yml
index 099a11c..5984ccc 100644
--- a/.rubocop.yml
+++ b/.rubocop.yml
@@ -1,6 +1,6 @@
require: rubocop-rspec
AllCops:
- TargetRubyVersion: 1.9
+ TargetRubyVersion: 2.1
Include:
- ./**/*.rb
Exclude:
diff --git a/.travis.yml b/.travis.yml
index 1688f39..7ebb8bb 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -3,8 +3,7 @@ dist: bionic
language: ruby
cache: bundler
before_install:
- - gem update --system
- - gem update bundler
+ - yes | gem update --system
- bundle --version
script:
- 'bundle exec rake $CHECK'
@@ -77,6 +76,7 @@ branches:
- /^v\d/
notifications:
email: false
+ webhooks: https://voxpupu.li/incoming/travis
irc:
on_success: always
on_failure: always
diff --git a/Gemfile b/Gemfile
index 5a2e737..50a9030 100644
--- a/Gemfile
+++ b/Gemfile
@@ -20,7 +20,7 @@ group :test do
gem 'puppet-lint-classes_and_types_beginning_with_digits-check', :require => false
gem 'puppet-lint-unquoted_string-check', :require => false
gem 'puppet-lint-variable_contains_upcase', :require => false
- gem 'puppet-lint-absolute_classname-check', :require => false
+ gem 'puppet-lint-absolute_classname-check', '>= 2.0.0', :require => false
gem 'puppet-lint-topscope-variable-check', :require => false
gem 'puppet-lint-legacy_facts-check', :require => false
gem 'puppet-lint-anchor-check', :require => false
diff --git a/Rakefile b/Rakefile
index e3642ac..c0f2d37 100644
--- a/Rakefile
+++ b/Rakefile
@@ -8,16 +8,6 @@ rescue LoadError
end
PuppetLint.configuration.log_format = '%{path}:%{line}:%{check}:%{KIND}:%{message}'
-PuppetLint.configuration.absolute_classname_reverse = true
-
-exclude_paths = %w(
- pkg/**/*
- vendor/**/*
- .vendor/**/*
- spec/**/*
-)
-PuppetLint.configuration.ignore_paths = exclude_paths
-PuppetSyntax.exclude_paths = exclude_paths
desc 'Auto-correct puppet-lint offenses'
task 'lint:auto_correct' do