summaryrefslogtreecommitdiff
path: root/Gemfile
diff options
context:
space:
mode:
Diffstat (limited to 'Gemfile')
-rw-r--r--Gemfile17
1 files changed, 9 insertions, 8 deletions
diff --git a/Gemfile b/Gemfile
index 2eceb4d4..afe1a706 100644
--- a/Gemfile
+++ b/Gemfile
@@ -1,22 +1,23 @@
+# frozen_string_literal: true
source "https://rubygems.org"
gemspec
+# pull these gems from master of chef/chef so that we're testing against what we will release
+gem "chef-config", git: "https://github.com/chef/chef", glob: "chef-config/chef-config.gemspec"
+gem "chef-utils", git: "https://github.com/chef/chef", glob: "chef-utils/chef-utils.gemspec"
+
# NOTE: do not submit PRs to add pry as a dep, add to your Gemfile.local
group :development do
gem "chefstyle", git: "https://github.com/chef/chefstyle.git", branch: "master"
+ gem "ipaddr_extensions"
gem "rake", ">= 10.1.0"
+ gem "rspec-collection_matchers", "~> 1.0"
gem "rspec-core", "~> 3.0"
gem "rspec-expectations", "~> 3.0"
gem "rspec-mocks", "~> 3.0"
- gem "rspec-collection_matchers", "~> 1.0"
- gem "ipaddr_extensions"
-end
-
-group :docs do
- gem "yard"
- gem "redcarpet"
- gem "github-markup"
+ gem "rubocop-performance", "1.9.0"
+ gem "rubocop-rspec"
end
group :debug do