-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
40 lines (36 loc) · 1.38 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
source ENV['GEM_SOURCE'] || "https://rubygems.org"
group :test do
gem "rake", '< 11'
gem "puppet", ENV['PUPPET_GEM_VERSION'] || '~> 3.8.0'
gem "rspec"
gem "rspec-puppet"
gem "puppetlabs_spec_helper"
if RUBY_VERSION < '2.0.0'
gem 'metadata-json-lint', '< 1.2.0'
else
gem 'metadata-json-lint'
end
gem "rspec-puppet-facts"
gem 'simplecov', '>= 0.11.0'
gem 'simplecov-console'
gem "puppet-lint-absolute_classname-check"
gem "puppet-lint-leading_zero-check"
gem "puppet-lint-trailing_comma-check"
gem "puppet-lint-version_comparison-check"
gem "puppet-lint-classes_and_types_beginning_with_digits-check"
gem "puppet-lint-unquoted_string-check"
gem 'puppet-lint-resource_reference_syntax'
gem 'ffi', '<= 1.10.0' if RUBY_VERSION < '2.0.0'
gem 'json', '< 2.0.0' if RUBY_VERSION < '2.0.0'
gem 'json_pure', '< 2.0.0' if RUBY_VERSION < '2.0.0'
gem 'json-schema', '< 2.5.0' if RUBY_VERSION < '2.0.0'
gem 'listen', '< 3.1' if RUBY_VERSION < '2.2'
gem 'parallel_tests', '<= 2.9.0' if RUBY_VERSION < '2.0.0'
gem 'public_suffix', '<= 3.0.3' if RUBY_VERSION < '2.3'
gem 'rb-inotify', '< 0.10' if RUBY_VERSION < '2.2'
end
group :development do
gem "travis" if RUBY_VERSION >= '2.1.0'
gem "travis-lint" if RUBY_VERSION >= '2.1.0'
gem "guard-rake" if RUBY_VERSION >= '2.2.5' # per dependency https://rubygems.org/gems/ruby_dep
end