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

Commit f9e6adc

Browse files
committed
modulesync 0.21.3
1 parent c12075d commit f9e6adc

File tree

7 files changed

+27
-2
lines changed

7 files changed

+27
-2
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,4 @@ Puppetfile.lock
1717
*.iml
1818
.*.sw?
1919
.yardoc/
20+
Guardfile

.msync.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
modulesync_config_version: '0.21.0'
1+
modulesync_config_version: '0.21.3'

.rspec_parallel

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
--format progress

.rubocop.yml

+9
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ AllCops:
1111
- spec/fixtures/**/*
1212
- Gemfile
1313
- Rakefile
14+
- Guardfile
1415
Lint/ConditionPosition:
1516
Enabled: True
1617

@@ -502,6 +503,10 @@ Style/ClosingParenthesisIndentation:
502503

503504
# RSpec
504505

506+
RSpec/BeforeAfterAll:
507+
Exclude:
508+
- spec/acceptance/**/*
509+
505510
# We don't use rspec in this way
506511
RSpec/DescribeClass:
507512
Enabled: False
@@ -521,6 +526,10 @@ RSpec/RepeatedDescription:
521526
RSpec/NestedGroups:
522527
Enabled: False
523528

529+
# this is broken on ruby1.9
530+
Style/IndentHeredoc:
531+
Enabled: False
532+
524533
# disable Yaml safe_load. This is needed to support ruby2.0.0 development envs
525534
Security/YAMLLoad:
526535
Enabled: false

Gemfile

+1
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ group :test do
3535
gem 'github_changelog_generator', '~> 1.13.0', :require => false if RUBY_VERSION < '2.2.2'
3636
gem 'rack', '~> 1.0', :require => false if RUBY_VERSION < '2.2.2'
3737
gem 'github_changelog_generator', :require => false if RUBY_VERSION >= '2.2.2'
38+
gem 'parallel_tests', :require => false
3839
end
3940

4041
group :development do
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
---
2+
# This file is managed via modulesync
3+
# https://github.com/voxpupuli/modulesync
4+
# https://github.com/voxpupuli/modulesync_config
5+
HOSTS:
6+
archlinux-2-x64:
7+
roles:
8+
- master
9+
platform: archlinux-2-x64
10+
box: archlinux/archlinux
11+
hypervisor: vagrant
12+
CONFIG:
13+
type: foss

spec/acceptance/nodesets/docker/ubuntu-16.04.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ HOSTS:
1010
docker_preserve_image: true
1111
docker_cmd: '["/sbin/init"]'
1212
docker_image_commands:
13-
- 'apt-get install -y net-tools wget'
13+
- 'apt-get install -y net-tools wget locales'
1414
- 'locale-gen en_US.UTF-8'
1515
CONFIG:
1616
trace_limit: 200

0 commit comments

Comments
 (0)