diff options
author | Bryan McLellan <btm@opscode.com> | 2012-07-23 08:42:40 -0700 |
---|---|---|
committer | Bryan McLellan <btm@opscode.com> | 2012-07-23 08:42:40 -0700 |
commit | 1824e8878599f0350ad89ab3474a83b4b5871cef (patch) | |
tree | b28fcdc08e5182a976139ce670f8eab4f6e98c59 /chef/Gemfile | |
parent | 5e7f9d5004655a775f874cf5bd8a5e5295c3f2f5 (diff) | |
download | chef-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/Gemfile | 3 |
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 |