summaryrefslogtreecommitdiff
path: root/Gemfile
blob: 0a11dea5aa88db6320da4854c0b42856170935a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
source "https://rubygems.org"
gemspec

# gem 'rest-client', :git => 'https://github.com/chef/rest-client.git'

group :pedant do
  gem "oc-chef-pedant", :git => "https://github.com/chef/chef-server.git"
end

group :development, :test do
  gem "chefstyle", git: "https://github.com/chef/chefstyle.git", branch: "master"
end

gem "chef", "~> 13"

if ENV["GEMFILE_MOD"]
  puts "GEMFILE_MOD: #{ENV['GEMFILE_MOD']}"
  instance_eval(ENV["GEMFILE_MOD"])
end