From 250140f52f6f2465accd3344ab95abe0bd481401 Mon Sep 17 00:00:00 2001 From: Wade Alcorn Date: Wed, 11 Jan 2012 22:05:56 +1000 Subject: [PATCH] The win32console gem is now only installed on windows. Fixes issue #553 https://github.com/beefproject/beef/issues/553 --- Gemfile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Gemfile b/Gemfile index c250c114d..5217b950c 100644 --- a/Gemfile +++ b/Gemfile @@ -27,6 +27,11 @@ gem "parseconfig" gem "erubis" gem "dm-migrations" +# Gems only required one windows +if RUBY_PLATFORM.downcase.include?("mswin") + gem "win32console" +end + # for the console shell extension gem "librex", "0.0.52"