summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2017-05-25 12:20:57 -0500
committerGitHub <noreply@github.com>2017-05-25 12:20:57 -0500
commitbe0772889c83e34151f3c7d3421cbf8ad4680c17 (patch)
tree45f9ae65bda7d8b790923067b01326140cfe3057
parentfc318e6505aa81786375fe435561a116ffd84fef (diff)
parente3d9ab9f466c7b3f0a5a7f1e694784ca21e09807 (diff)
downloadohai-be0772889c83e34151f3c7d3421cbf8ad4680c17.tar.gz
Merge pull request #1003 from chef/lcg/dev-gems
clean up and prune dev gems
-rw-r--r--.gitignore1
-rw-r--r--Gemfile21
2 files changed, 16 insertions, 6 deletions
diff --git a/.gitignore b/.gitignore
index f46c0cdc..ee7d0274 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,5 +1,6 @@
*.sw?
Gemfile.lock
+Gemfile.local
pkg/
tmp/
coverage/
diff --git a/Gemfile b/Gemfile
index 339d5214..4df781e2 100644
--- a/Gemfile
+++ b/Gemfile
@@ -2,18 +2,27 @@ source "https://rubygems.org"
gemspec
+# NOTE: do not submit PRs to add pry as a dep, add to your Gemfile.local
group :development do
gem "chefstyle"
- gem "overcommit", ">= 0.34.1"
- gem "pry-byebug"
- gem "pry-stack_explorer"
- gem "rb-readline"
- gem "rake", ">= 10.1.0", "< 12.0.0"
+ gem "rake", ">= 10.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 :ci do
gem "rspec_junit_formatter"
+end
+
+group :changelog do
gem "github_changelog_generator", git: "https://github.com/chef/github-changelog-generator"
- gem "ipaddr_extensions"
end
+
+instance_eval(ENV["GEMFILE_MOD"]) if ENV["GEMFILE_MOD"]
+
+# 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")