blob: 0d4849962b1243461851deb6e4308c918e918381 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
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"
gem "veil", :git => "https://github.com/chef/chef_secrets.git"
end
group :changelog do
gem "github_changelog_generator"
end
group :development, :test do
gem "chefstyle", "= 0.3.1"
end
gem "chef"
if ENV["GEMFILE_MOD"]
puts "GEMFILE_MOD: #{ENV['GEMFILE_MOD']}"
instance_eval(ENV["GEMFILE_MOD"])
end
|