Skip to content

Commit 658e754

Browse files
committed
Providers working and tested
1 parent c75750e commit 658e754

File tree

18 files changed

+463
-419
lines changed

18 files changed

+463
-419
lines changed

.gitignore

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
.kitchen/
2-
.kitchen.local.yml
1+
Gemfile.lock
2+
spec/fixtures/modules

.kitchen.yml

-38
This file was deleted.

.rubocop.yml

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
AllCops:
2+
Exclude:
3+
- spec/fixtures/modules/**
4+
DisplayCopNames: true
5+
DisplayStyleGuide: true
6+
7+
Style/ClassAndModuleChildren:
8+
EnforcedStyle: compact
9+
10+
Metrics/MethodLength:
11+
Max: 20
12+
13+
Metrics/BlockLength:
14+
Max: 50
15+
16+
Metrics/LineLength:
17+
Max: 130
18+
19+
EndOfLine:
20+
Enabled: false

Gemfile

+3-11
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,16 @@
11
source ENV['GEM_SOURCE'] || 'https://rubygems.org'
22

33
puppetversion = ENV.key?('PUPPET_VERSION') ? ENV['PUPPET_VERSION'] : ['>= 3.3']
4+
gem 'facter', '>= 1.7.0'
45
gem 'metadata-json-lint'
56
gem 'puppet', puppetversion
6-
gem 'puppetlabs_spec_helper', '>= 1.0.0'
77
gem 'puppet-lint', '>= 1.0.0'
8-
gem 'facter', '>= 1.7.0'
9-
gem 'rspec-puppet'
10-
gem 'test-kitchen'
11-
gem 'kitchen-puppet'
12-
gem 'kitchen-azurerm'
13-
gem 'kitchen-pester'
14-
gem 'winrm'
15-
gem 'winrm-fs'
16-
gem 'r10k'
8+
gem 'puppetlabs_spec_helper', '>= 1.0.0'
179

1810
# rspec must be v2 for ruby 1.8.7
1911
if RUBY_VERSION >= '1.8.7' && RUBY_VERSION < '1.9'
20-
gem 'rspec', '~> 2.0'
2112
gem 'rake', '~> 10.0'
13+
gem 'rspec', '~> 2.0'
2214
else
2315
# rubocop requires ruby >= 1.9
2416
gem 'rubocop'

Gemfile.lock

-231
This file was deleted.

0 commit comments

Comments
 (0)