forked from berkshelf/berkshelf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
36 lines (29 loc) · 1.07 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
source "https://rubygems.org"
gemspec
group :changelog do
gem "github_changelog_generator"
end
group :build do
gem "rake", ">= 10.1"
end
# temporarily until 13.7.x is released
gem "chef", git: "https://github.com/chef/chef", branch: "master"
group :development do
# these all deliberately float because berkshelf has a Gemfile.lock that
# equality pins them. temporarily pin as necessary for API breaks.
gem "aruba", ">= 0.10.0"
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 "yard", ">= 0.8"
gem "http", ">= 0.9.8"
gem "chefstyle", git: "https://github.com/chef/chefstyle.git", branch: "master"
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")