Skip to content
This repository was archived by the owner on May 5, 2023. It is now read-only.

Commit 664be8f

Browse files
committed
modulesync 2.10.0
1 parent 175cabb commit 664be8f

File tree

5 files changed

+5
-15
lines changed

5 files changed

+5
-15
lines changed

.msync.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
modulesync_config_version: '2.9.0'
1+
modulesync_config_version: '2.10.0'

.rubocop.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
require: rubocop-rspec
22
AllCops:
3-
TargetRubyVersion: 1.9
3+
TargetRubyVersion: 2.1
44
Include:
55
- ./**/*.rb
66
Exclude:

.travis.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@ dist: bionic
33
language: ruby
44
cache: bundler
55
before_install:
6-
- gem update --system
7-
- gem update bundler
6+
- yes | gem update --system
87
- bundle --version
98
script:
109
- 'bundle exec rake $CHECK'
@@ -29,6 +28,7 @@ branches:
2928
- /^v\d/
3029
notifications:
3130
email: false
31+
webhooks: https://voxpupu.li/incoming/travis
3232
irc:
3333
on_success: always
3434
on_failure: always

Gemfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ group :test do
2020
gem 'puppet-lint-classes_and_types_beginning_with_digits-check', :require => false
2121
gem 'puppet-lint-unquoted_string-check', :require => false
2222
gem 'puppet-lint-variable_contains_upcase', :require => false
23-
gem 'puppet-lint-absolute_classname-check', :require => false
23+
gem 'puppet-lint-absolute_classname-check', '>= 2.0.0', :require => false
2424
gem 'puppet-lint-topscope-variable-check', :require => false
2525
gem 'puppet-lint-legacy_facts-check', :require => false
2626
gem 'puppet-lint-anchor-check', :require => false

Rakefile

-10
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,6 @@ rescue LoadError
88
end
99

1010
PuppetLint.configuration.log_format = '%{path}:%{line}:%{check}:%{KIND}:%{message}'
11-
PuppetLint.configuration.absolute_classname_reverse = true
12-
13-
exclude_paths = %w(
14-
pkg/**/*
15-
vendor/**/*
16-
.vendor/**/*
17-
spec/**/*
18-
)
19-
PuppetLint.configuration.ignore_paths = exclude_paths
20-
PuppetSyntax.exclude_paths = exclude_paths
2111

2212
desc 'Auto-correct puppet-lint offenses'
2313
task 'lint:auto_correct' do

0 commit comments

Comments
 (0)