modulesync 3.0.0

This commit is contained in:
Tim Meusel 2020-07-25 14:15:38 +02:00
parent 14e4c0bc49
commit bb242ec207
No known key found for this signature in database
GPG Key ID: 04D659E6BF1C4CC0
5 changed files with 13 additions and 6 deletions

3
.github/SECURITY.md vendored Normal file
View File

@ -0,0 +1,3 @@
# Vox Pupuli Security Policy
Our vulnerabilities reporting process is at https://voxpupuli.org/security/

View File

@ -1 +1 @@
modulesync_config_version: '2.12.0' modulesync_config_version: '3.0.0'

View File

@ -528,6 +528,9 @@ RSpec/RepeatedDescription:
RSpec/NestedGroups: RSpec/NestedGroups:
Enabled: False Enabled: False
RSpec/MultipleExpectations:
Enabled: false
# this is broken on ruby1.9 # this is broken on ruby1.9
Layout/IndentHeredoc: Layout/IndentHeredoc:
Enabled: False Enabled: False

View File

@ -1,4 +1,5 @@
--- ---
os: linux
dist: bionic dist: bionic
language: ruby language: ruby
cache: bundler cache: bundler
@ -7,7 +8,7 @@ before_install:
- bundle --version - bundle --version
script: script:
- 'bundle exec rake $CHECK' - 'bundle exec rake $CHECK'
matrix: jobs:
fast_finish: true fast_finish: true
include: include:
- rvm: 2.4.4 - rvm: 2.4.4
@ -36,7 +37,7 @@ notifications:
- "chat.freenode.org#voxpupuli-notifications" - "chat.freenode.org#voxpupuli-notifications"
deploy: deploy:
provider: puppetforge provider: puppetforge
user: puppet username: puppet
password: password:
secure: "" secure: ""
on: on:

View File

@ -11,9 +11,9 @@ def location_for(place, fake_version = nil)
end end
group :test do group :test do
gem 'voxpupuli-test', '>= 1.0.0', :require => false gem 'voxpupuli-test', '~> 2.0', :require => false
gem 'coveralls', :require => false gem 'coveralls', :require => false
gem 'simplecov-console', :require => false gem 'simplecov-console', :require => false
end end
group :development do group :development do