forked from berkshelf/berkshelf
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Gemfile
28 lines (23 loc) · 856 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
28
source "https://rubygems.org"
gemspec
group :build do
gem "rake", ">= 10.1"
end
group :development do
gem "aruba", "~> 0.10" # Stay below 1 until aruba/in_process monkeypatching stops
gem "debug"
gem "cucumber", "< 4.0" # until we identify what is generating the ~@no_run tag in CI
gem "cucumber-expressions", "= 5.0.13"
gem "chef-zero", ">= 4.0"
gem "dep_selector", ">= 1.0"
gem "fuubar", ">= 2.0"
gem "rspec", ">= 3.0"
gem "rspec-its", ">= 1.2"
gem "webmock", ">= 1.11"
gem "http", ">= 0.9.8"
gem "chefstyle"
end
instance_eval(ENV["GEMFILE_MOD"]) if ENV["GEMFILE_MOD"]
# If you want to load debugging tools into the bundle exec sandbox,
# add these additional dependencies into Gemfile.local
eval_gemfile(__FILE__ + ".local") if File.exist?(__FILE__ + ".local")