From 8308182b632e3fdd4fcef51ed1df420d835d1750 Mon Sep 17 00:00:00 2001 From: Calen Pennington Date: Thu, 12 Sep 2013 09:37:10 -0400 Subject: [PATCH 1/2] Add rb-inotify dependency --- Gemfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Gemfile b/Gemfile index 8a6a2c8ccc..e929076957 100644 --- a/Gemfile +++ b/Gemfile @@ -6,3 +6,5 @@ gem 'neat', '~> 1.3.0' gem 'colorize', '~> 0.5.8' gem 'launchy', '~> 2.1.2' gem 'sys-proctable', '~> 0.9.3' +gem 'rb-inotify', '~> 0.9' +gem 'rb-fsevent', '~> 0.9.3' From e794688274aa8f07649fb8fa999254bb3c0e776e Mon Sep 17 00:00:00 2001 From: David Baumgold Date: Mon, 16 Sep 2013 15:27:37 -0400 Subject: [PATCH 2/2] Indicate that rb-inotify and rb-fsevent aren't actually necessary --- Gemfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Gemfile b/Gemfile index e929076957..329f289d79 100644 --- a/Gemfile +++ b/Gemfile @@ -6,5 +6,8 @@ gem 'neat', '~> 1.3.0' gem 'colorize', '~> 0.5.8' gem 'launchy', '~> 2.1.2' gem 'sys-proctable', '~> 0.9.3' +# These gems aren't actually required; they are used by Linux and Mac to +# detect when files change. If these gems are not installed, the system +# will fall back to polling files. gem 'rb-inotify', '~> 0.9' gem 'rb-fsevent', '~> 0.9.3'