diff options
author | tyler-ball <tyleraball@gmail.com> | 2016-01-21 12:14:19 -0700 |
---|---|---|
committer | tyler-ball <tyleraball@gmail.com> | 2016-01-21 12:14:19 -0700 |
commit | 5233fe583b601bc9fbaf4751a47858292bb11d15 (patch) | |
tree | 19e9019dde5deac95cfe354640bebfc8f50d74c7 /Gemfile | |
parent | 5bd62d64eaa8dde65188aba21620f8f0fd76a38f (diff) | |
download | chef-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-- | Gemfile | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -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, |