summaryrefslogtreecommitdiff
path: root/Gemfile
diff options
context:
space:
mode:
authortyler-ball <tyleraball@gmail.com>2016-01-21 12:14:19 -0700
committertyler-ball <tyleraball@gmail.com>2016-01-21 12:14:19 -0700
commit5233fe583b601bc9fbaf4751a47858292bb11d15 (patch)
tree19e9019dde5deac95cfe354640bebfc8f50d74c7 /Gemfile
parent5bd62d64eaa8dde65188aba21620f8f0fd76a38f (diff)
downloadchef-5233fe583b601bc9fbaf4751a47858292bb11d15.tar.gz
Solaris builds are failing because bundler-audit depends on Thor, which has a filename with a space in it. Bundler-audit is only needed for Travis so putting it into its own gem group and excluding it from the omnibus build.
Diffstat (limited to 'Gemfile')
-rw-r--r--Gemfile7
1 files changed, 5 insertions, 2 deletions
diff --git a/Gemfile b/Gemfile
index 0c9a7314b6..2c37e6c7d4 100644
--- a/Gemfile
+++ b/Gemfile
@@ -32,8 +32,6 @@ group(:development, :test) do
gem "ruby-shadow", platforms: :ruby unless RUBY_PLATFORM.downcase.match(/(aix|cygwin)/)
- gem "bundler-audit", git: "https://github.com/rubysec/bundler-audit.git", ref: "4e32fca"
-
# For external tests
# gem 'chef-zero', github: 'chef/chef-zero'
# gem 'cheffish', github: 'chef/cheffish'
@@ -48,6 +46,11 @@ group(:development, :test) do
# gem 'chef-rewind'
end
+group(:travis) do
+ # See `bundler-audit` in .travis.yml
+ gem "bundler-audit", git: "https://github.com/rubysec/bundler-audit.git", ref: "4e32fca"
+end
+
instance_eval(ENV["GEMFILE_MOD"]) if ENV["GEMFILE_MOD"]
# If you want to load debugging tools into the bundle exec sandbox,