diff options
author | Lamont Granquist <lamont@scriptkiddie.org> | 2017-05-24 14:18:05 -0500 |
---|---|---|
committer | Lamont Granquist <lamont@scriptkiddie.org> | 2017-05-24 14:20:42 -0500 |
commit | 1a2b0dad3fed58c46ca61eb19d0838a40bbe6284 (patch) | |
tree | ca166cbd4046b6ea4b75de5b7ec9ab3c858b47a5 /Gemfile | |
parent | fc318e6505aa81786375fe435561a116ffd84fef (diff) | |
download | ohai-1a2b0dad3fed58c46ca61eb19d0838a40bbe6284.tar.gz |
clean up and prune dev gems
people that want pry need to explicitly include it in their own
Gemfile.local now.
Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
Diffstat (limited to 'Gemfile')
-rw-r--r-- | Gemfile | 20 |
1 files changed, 14 insertions, 6 deletions
@@ -4,16 +4,24 @@ gemspec 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 chef/Gemfile.local +eval(IO.read(__FILE__ + ".local"), binding) if File.exist?(__FILE__ + ".local") |