forked from cdapio/hadoop_cookbook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
59 lines (52 loc) · 1.3 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
source 'https://rubygems.org'
gem 'berkshelf', '~> 3.0'
gem 'chefspec', '~> 4.0'
gem 'rspec', '~> 3.0'
if RUBY_VERSION.to_f < 2.2
gem 'nio4r', '< 2.0'
gem 'rack', '< 2.0'
# rubocop: disable Lint/UnneededDisable
# rubocop: disable Bundler/DuplicatedGem
if RUBY_VERSION.to_f < 2.1
gem 'fauxhai', '< 3.5'
else
gem 'fauxhai', '< 3.10'
end
# rubocop: enable Bundler/DuplicatedGem
# rubocop: enable Lint/UnneededDisable
end
if RUBY_VERSION.to_f < 2.1
gem 'buff-ignore', '< 1.2'
gem 'chef-zero', '< 4.6'
gem 'dep_selector', '< 1.0.4'
gem 'ffi-yajl', '< 2.3'
gem 'net-http-persistent', '< 3.0'
gem 'nokogiri', '< 1.7'
end
if RUBY_VERSION.to_f < 2.0
# rubocop: disable Lint/UnneededDisable
# rubocop: disable Bundler/DuplicatedGem
gem 'chef', '< 12.0'
gem 'foodcritic', '~> 4.0'
gem 'json', '< 2.0'
gem 'rubocop', '< 0.42'
gem 'varia_model', '< 0.5.0'
elsif RUBY_VERSION.to_f > 2.3
gem 'chef'
gem 'foodcritic'
gem 'rubocop'
else
gem 'chef', '< 12.5'
gem 'foodcritic', '~> 6.0'
gem 'rubocop'
# rubocop: enable Bundler/DuplicatedGem
# rubocop: enable Lint/UnneededDisable
end
gem 'dep-selector-libgecode', '< 1.3.1'
gem 'faraday', '< 0.9.2'
gem 'rainbow', '<= 1.99.1'
gem 'ridley', '~> 4.2.0'
group :integration do
gem 'kitchen-vagrant'
gem 'test-kitchen'
end