forked from epost-dev/opennebula-puppet-module
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
115 lines (109 loc) · 4.51 KB
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
source ENV['GEM_SOURCE'] || "https://rubygems.org"
group :development, :test do
if RUBY_VERSION < '1.9.3'
gem 'rake', '< 11'
gem 'retriable', '< 2'
gem 'addressable', '< 2.4'
else
gem 'rake', :require => false
end
gem 'rspec-puppet', :require => false
gem 'rspec-puppet-utils', :require => false
gem 'puppetlabs_spec_helper', :require => false
gem 'puppet-lint', :require => false
gem 'simplecov', :require => false
if RUBY_VERSION =~ /1.8/
gem 'nokogiri', '<= 1.5.10'
else
gem 'nokogiri', :require => false
end
end
group :integration do
gem 'serverspec', :require => false
gem 'beaker', :require => false
gem 'beaker-rspec', :require => false
gem 'vagrant-wrapper', :require => false
gem 'pry', :require => false
end
if facterversion = ENV['FACTER_GEM_VERSION']
gem 'facter', facterversion, :require => false
else
gem 'facter', :require => false
end
if puppetversion = ENV['PUPPET_GEM_VERSION']
gem 'puppet', puppetversion, :require => false
if puppetversion < '3.0'
gem 'hiera-puppet', :require => false
end
else
gem 'puppet', '< 4', :require => false
end
# puppet lint plugins
# https://puppet.community/plugins/#puppet-lint
gem 'puppet-lint-appends-check',
:git => 'https://github.com/puppet-community/puppet-lint-appends-check.git',
:require => false
gem 'puppet-lint-classes_and_types_beginning_with_digits-check',
:git => 'https://github.com/puppet-community/puppet-lint-classes_and_types_beginning_with_digits-check.git',
:require => false
gem 'puppet-lint-empty_string-check',
:git => 'https://github.com/puppet-community/puppet-lint-empty_string-check.git',
:require => false
gem 'puppet-lint-file_ensure-check',
:git => 'https://github.com/puppet-community/puppet-lint-file_ensure-check.git',
:require => false
gem 'puppet-lint-leading_zero-check',
:git => 'https://github.com/puppet-community/puppet-lint-leading_zero-check.git',
:require => false
gem 'puppet-lint-numericvariable',
:git => 'https://github.com/fiddyspence/puppetlint-numericvariable.git',
:require => false
gem 'puppet-lint-resource_reference_syntax',
:git => 'https://github.com/tuxmea/puppet-lint-resource_reference_syntax.git',
:require => false
gem 'puppet-lint-security-plugins',
:git => 'https://github.com/floek/puppet-lint-security-plugins.git',
:require => false
gem 'puppet-lint-spaceship_operator_without_tag-check',
:git => 'https://github.com/puppet-community/puppet-lint-spaceship_operator_without_tag-check.git',
:require => false
gem 'puppet-lint-strict_indent-check',
:git => 'https://github.com/relud/puppet-lint-strict_indent-check.git',
:require => false
gem 'puppet-lint-trailing_comma-check',
:git => 'https://github.com/puppet-community/puppet-lint-trailing_comma-check.git',
:require => false
gem 'puppet-lint-trailing_newline-check',
:git => 'https://github.com/rodjek/puppet-lint-trailing_newline-check.git',
:require => false
gem 'puppet-lint-undef_in_function-check',
:git => 'https://github.com/puppet-community/puppet-lint-undef_in_function-check.git',
:require => false
gem 'puppet-lint-unquoted_string-check',
:git => 'https://github.com/puppet-community/puppet-lint-unquoted_string-check.git',
:require => false
gem 'puppet-lint-usascii_format-check',
:git => 'https://github.com/jpmasters/puppet-lint-usascii_format-check.git',
:require => false
gem 'puppet-lint-variable_contains_upcase',
:git => 'https://github.com/fiddyspence/puppetlint-variablecase.git',
:require => false
gem 'puppet-lint-version_comparison-check',
:git => 'https://github.com/puppet-community/puppet-lint-version_comparison-check.git',
:require => false
# disabled lint plugins
#gem 'puppet-lint-file_source_rights-check',
# :git => 'https://github.com/camptocamp/puppet-lint-file_source_rights-check.git',
# :require => false
#gem 'puppet-lint-fileserver-check',
# :git => 'https://github.com/camptocamp/puppet-lint-fileserver-check.git',
# :require => false
#gem 'puppet-lint-global_resource-check',
# :git => 'https://github.com/ninech/puppet-lint-global_resource-check.git',
# :require => false
#gem 'puppet-lint-package_ensure-check',
# :git => 'https://github.com/danzilio/puppet-lint-package_ensure-check.git',
# :require => false
#gem 'puppet-lint-param-docs',
# :git => 'https://github.com/domcleal/puppet-lint-param-docs.git',
# :require => false