-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
38 lines (32 loc) · 1.01 KB
/
Gemfile
File metadata and controls
38 lines (32 loc) · 1.01 KB
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
# A sample Gemfile
source "https://rubygems.org"
gem 'falkorlib', git: 'https://github.com/Falkor/falkorlib.git', ref: 'ed25efb'
gem 'puppet-syntax', '< 6.0.0'
group :test do
gem "rake"
gem "puppet", ENV['PUPPET_GEM_VERSION'] || '~> 7'
gem "pdk"
gem "rspec", '< 3.2.0'
gem "rspec-puppet"
gem "puppetlabs_spec_helper"
gem "metadata-json-lint"
gem "rspec-puppet-facts"
gem 'rubocop', '~> 0.51'
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 :system_tests do
gem "beaker", '~> 6.1.0'
gem "beaker-rspec"
gem "beaker-puppet_install_helper"
end