forked from puppetlabs/pdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
60 lines (53 loc) · 1.42 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
source 'https://rubygems.org'
# Specify your gem's dependencies in pdk.gemspec
gemspec
if RUBY_VERSION < '2.3.0'
# avoid newer versions that do not support ruby 2.1 anymore
gem 'cri', '>= 2.10.1', '< 2.11.0'
gem 'nokogiri', '1.7.2'
else
gem 'nokogiri', '~> 1.10.4' # rubocop:disable Bundler/DuplicatedGem
end
group :development do
gem 'activesupport', '4.2.9'
gem 'github_changelog_generator', '~> 1.14'
gem 'pry-byebug', '~> 3.4'
if RUBY_VERSION < '2.2.2'
# byebug >= 9.1.0 requires ruby 2.2.0 or newer
gem 'byebug', '~> 9.0.6'
# required for github_changelog_generator
gem 'rack', '~> 1.0'
end
gem 'ruby-prof'
gem 'yard'
end
group :test do
gem 'coveralls'
gem 'license_finder', '~> 3.0.4'
if RUBY_VERSION < '2.4'
# license_finder depends on rubyzip which requires Ruby 2.4 in 2.x
gem 'rubyzip', '< 2.0.0'
end
gem 'parallel', '= 1.13.0'
gem 'parser', '~> 2.5.1.2'
gem 'rake', '~> 10.0'
gem 'rspec', '~> 3.0'
gem 'rspec-xsd'
gem 'rubocop', '~> 0.57.2'
gem 'rubocop-rspec', '~> 1.27.0'
gem 'simplecov-console'
end
group :acceptance do
gem 'minitar-cli'
gem 'serverspec'
end
# Evaluate Gemfile.local and ~/.gemfile if they exist
extra_gemfiles = [
"#{__FILE__}.local",
File.join(Dir.home, '.gemfile'),
]
extra_gemfiles.each do |gemfile|
if File.file?(gemfile) && File.readable?(gemfile)
eval(File.read(gemfile), binding) # rubocop:disable Security/Eval
end
end