summaryrefslogtreecommitdiff
path: root/chef/Gemfile
diff options
context:
space:
mode:
authorBryan McLellan <btm@opscode.com>2012-07-23 08:42:40 -0700
committerBryan McLellan <btm@opscode.com>2012-07-23 08:42:40 -0700
commit1824e8878599f0350ad89ab3474a83b4b5871cef (patch)
treeb28fcdc08e5182a976139ce670f8eab4f6e98c59 /chef/Gemfile
parent5e7f9d5004655a775f874cf5bd8a5e5295c3f2f5 (diff)
downloadchef-1824e8878599f0350ad89ab3474a83b4b5871cef.tar.gz
Restrict ruby-shadow development dependency to *nix.
It doesn't compile easily on windows and we probably don't need it there anyway. The 'ruby' platform requirement in the Gemfile excludes Windows.
Diffstat (limited to 'chef/Gemfile')
-rw-r--r--chef/Gemfile3
1 files changed, 2 insertions, 1 deletions
diff --git a/chef/Gemfile b/chef/Gemfile
index 0f5aff5a4a..a15eb69a21 100644
--- a/chef/Gemfile
+++ b/chef/Gemfile
@@ -8,10 +8,11 @@ gem "ronn"
group(:development, :test) do
gem 'rack'
+ # The 'ruby' platform is surprisingly just unix-y platforms
# thin requires eventmachine, which won't work under Ruby 1.9 on Windows
# http://gembundler.com/man/gemfile.5.html
gem 'thin', :platforms => :ruby
- gem 'ruby-shadow'
+ gem 'ruby-shadow', :platforms => :ruby
# gem 'awesome_print'
# gem 'pry'
end