summaryrefslogtreecommitdiff
path: root/chef-config/Gemfile
diff options
context:
space:
mode:
authorTim Smith <tsmith84@gmail.com>2020-10-20 13:07:56 -0700
committerTim Smith <tsmith84@gmail.com>2020-10-20 13:07:56 -0700
commitc65fb9334f3d2b8a9b13cdef069797c298513ade (patch)
treea0f2e8cd297404351c0d5230e67887985b4b026b /chef-config/Gemfile
parentec3933f4ea42ab457999103b7b801917cf4de54a (diff)
downloadchef-c65fb9334f3d2b8a9b13cdef069797c298513ade.tar.gz
Minor gem cleanup for chef-bin/chef-utils/chef-config
Add metadata to chef-config Update the descriptions for Chef Infra Move dev deps to the gemfiles so we're consistent in all the gems in this repo Just dep on rspec since rspec itself is mocks/expectations/core Add rake dep to chef-bin Nuke the unused .rspec file in chef-bin Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to 'chef-config/Gemfile')
-rw-r--r--chef-config/Gemfile6
1 files changed, 5 insertions, 1 deletions
diff --git a/chef-config/Gemfile b/chef-config/Gemfile
index c3d90e5e6c..7881fe6fd8 100644
--- a/chef-config/Gemfile
+++ b/chef-config/Gemfile
@@ -2,5 +2,9 @@ source "https://rubygems.org"
gem "chef-utils", path: File.expand_path("../chef-utils", __dir__) if File.exist?(File.expand_path("../chef-utils", __dir__))
-# Specify your gem's dependencies in chef-config.gemspec
gemspec
+
+group(:development, :test) do
+ gem "rake"
+ gem "rspec", "~> 3.2"
+end \ No newline at end of file