-
Notifications
You must be signed in to change notification settings - Fork 12
/
Gemfile
35 lines (31 loc) · 1000 Bytes
/
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
source "https://rubygems.org"
group :test do
gem 'rake'
gem 'puppet', ENV['PUPPET_VERSION'] || '~> 3.8.0'
gem 'rspec-puppet', git: 'https://github.com/rodjek/rspec-puppet.git'
gem 'puppetlabs_spec_helper'
gem 'metadata-json-lint', '~> 1.0.0' if RUBY_VERSION < '2.0.0'
gem 'metadata-json-lint' if RUBY_VERSION >= '2.0.0'
gem 'rspec-puppet-facts'
gem 'rspec'
gem 'puppet-blacksmith'
gem 'rubocop', '~> 0.39.0' if RUBY_VERSION < '2.0.0'
gem 'rubocop' if RUBY_VERSION >= '2.0.0'
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-variable_contains_upcase'
gem 'json_pure', '~> 1.x'
end
group :development do
gem 'travis'
gem 'travis-lint'
gem 'guard-rake'
end
group :system_tests do
gem 'beaker'
gem 'beaker-rspec'
end