forked from Fewbytes/sysctl-cookbook
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
31 lines (26 loc) · 718 Bytes
/
Gemfile
File metadata and controls
31 lines (26 loc) · 718 Bytes
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
source 'https://rubygems.org'
gem 'berkshelf', '~> 2.0.14'
group :unit do
gem 'foodcritic', '~> 3.0'
gem 'rubocop', '~> 0.18.0'
gem 'chefspec', '~> 3.2.0'
end
group :integration do
gem 'test-kitchen', '~> 1.1'
gem 'kitchen-vagrant'
end
group :release do
gem 'stove', '~> 1.1'
gem 'rspec_junit_formatter'
gem 'rubocop-checkstyle_formatter'
end
group :development do
gem 'guard', '~> 1.8'
gem 'guard-rubocop', '~> 0.2'
gem 'guard-foodcritic', '~> 1.0'
gem 'guard-kitchen', '~> 0.0'
gem 'guard-rspec', '~> 3.0'
gem 'rb-fsevent', :require => false
gem 'rb-inotify', :require => false
gem 'terminal-notifier-guard', :require => false
end