-
Notifications
You must be signed in to change notification settings - Fork 6
/
Gemfile
48 lines (40 loc) · 1.33 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
# A sample Gemfile
source "https://rubygems.org"
gem 'falkorlib' #, :path => '~/git/github.com/Falkor/falkorlib'
# Puppet stuff
#gem 'puppetlabs_spec_helper', '>= 0.1.0'
#gem 'puppet-syntax'
#gem 'facter', '>= 1.7.0'
group :test do
gem "rake"
gem "puppet", ENV['PUPPET_GEM_VERSION'] || '~> 4.4.0'
gem "rspec", '< 3.2.0'
gem "rspec-puppet"
gem "puppetlabs_spec_helper"
gem "metadata-json-lint"
gem "rspec-puppet-facts"
gem 'rubocop', '0.49.0'
gem 'simplecov', '>= 0.11.0'
gem 'simplecov-console'
#gem 'puppet-lint', '>= 0.3.2'
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 'semantic_puppet'
gem 'json_pure', '<= 2.0.1' if RUBY_VERSION < '2.0.0'
end
group :development do
gem "travis" if RUBY_VERSION >= '2.1.0'
gem "travis-lint" if RUBY_VERSION >= '2.1.0'
# gem "puppet-blacksmith"
# gem "guard-rake" if RUBY_VERSION >= '2.2.5' # per dependency https://rubygems.org/gems/ruby_dep
end
group :system_tests do
gem "beaker"
gem "beaker-rspec"
gem "beaker-puppet_install_helper"
end