forked from rightscale-cookbooks/rs-haproxy
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Gemfile
27 lines (24 loc) · 913 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
source 'https://rubygems.org'
gem 'berkshelf'
gem 'thor-foodcritic'
gem 'thor-scmversion'
group :integration do
# Prior to 0.1.6, libyaml is vulnerable to a heap overflow exploit from malicious YAML payloads.
# This solution is suggested to update psych:
# https://www.ruby-lang.org/en/news/2014/03/29/heap-overflow-in-yaml-uri-escape-parsing-cve-2014-2525/
gem 'psych', '~> 2.0.5'
gem 'travis-lint'
gem 'chefspec', '~> 3.4.0'
gem 'test-kitchen', '~> 1.2.1'
gem 'kitchen-vagrant', '0.15.0'
gem 'strainer', '~> 3.3.0'
gem 'rspec-expectations', '~> 2.14.0'
gem 'coveralls', require: false
gem 'machine_tag'
gem 'chef-rewind'
end
# These chef cookbooks have been updated to require later version of ruby [>= ruby2]. These pins resolve dep issues and allow ruby 1.x to work
gem 'rack', '= 1.6.4'
gem 'json', '~> 1.8', '>= 1.8.3'
gem 'buff-ignore', '= 1.1.1'
gem 'net-http-persistent','<3.0.0'