summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorScott Hain <shain@chef.io>2017-02-08 14:05:20 -0800
committerScott Hain <shain@chef.io>2017-02-08 14:05:20 -0800
commita0e1e89b5c4c8dc4fc9c20816e8108018c96fb21 (patch)
treed1ebbb20aaf8a032c7f7c52f46cc64184161d6b0
parent05b5f4ae2b27bfd759c960ad1378a61e9895b606 (diff)
downloadchef-a0e1e89b5c4c8dc4fc9c20816e8108018c96fb21.tar.gz
Testing excluding things on aix
Signed-off-by: Scott Hain <shain@chef.io>
-rw-r--r--Gemfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Gemfile b/Gemfile
index c09d8fca35..b137dae01d 100644
--- a/Gemfile
+++ b/Gemfile
@@ -59,12 +59,12 @@ group(:maintenance) do
end
# Everything except AIX
-group(:linux, :bsd, :mac_os_x, :solaris, :windows) do
+group(:linux, :bsd, :mac_os_x, :solaris, :windows, :ruby_prof) do
# may need to disable this in insolation on fussy builds like AIX, RHEL4, etc
gem "ruby-prof"
end
# Everything except AIX and Windows
-group(:linux, :bsd, :mac_os_x, :solaris) do
+group(:linux, :bsd, :mac_os_x, :solaris, :ruby_shadow) do
gem "ruby-shadow", platforms: :ruby
end