summaryrefslogtreecommitdiff
path: root/Gemfile
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2018-11-15 11:26:53 -0800
committerTim Smith <tsmith@chef.io>2018-11-15 11:36:10 -0800
commitc4e01b2a9cdfac71de90a5a26a488c2750bf301b (patch)
treeb63d55dcf9fe9087f9e97495b735ce95b9ce3af0 /Gemfile
parentdd72cf898377d4bf1356f9ce82db626c717a35dd (diff)
downloadchef-zero-c4e01b2a9cdfac71de90a5a26a488c2750bf301b.tar.gz
Cleanup gemfile and Rakefile
Add the debug group we use elsewhere Remove requires in Rakefile we don't need Don't install pry and friends in travis to speed things up Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to 'Gemfile')
-rw-r--r--Gemfile7
1 files changed, 7 insertions, 0 deletions
diff --git a/Gemfile b/Gemfile
index a086282..afc8b3a 100644
--- a/Gemfile
+++ b/Gemfile
@@ -1,4 +1,5 @@
source "https://rubygems.org"
+
gemspec
# gem 'rest-client', :git => 'https://github.com/chef/rest-client.git'
@@ -18,6 +19,12 @@ else
gem "chef", "~> 14.0"
end
+group :debug do
+ gem "pry"
+ gem "pry-byebug"
+ gem "pry-stack_explorer"
+end
+
# 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")