haml-edge 2.3.233 → 2.3.234
Sign up to get free protection for your applications and to get access to all the features.
- data/EDGE_GEM_VERSION +1 -1
- data/VERSION +1 -1
- data/lib/sass/plugin.rb +7 -0
- metadata +1 -1
data/EDGE_GEM_VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
2.3.
|
1
|
+
2.3.234
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
2.3.
|
1
|
+
2.3.234
|
data/lib/sass/plugin.rb
CHANGED
@@ -291,6 +291,13 @@ module Sass
|
|
291
291
|
raise e
|
292
292
|
end
|
293
293
|
|
294
|
+
unless individual_files.empty? && FSSM::Backends::Default.name == "FSSM::Backends::FSEvents"
|
295
|
+
# As of FSSM 0.1.4, it doesn't support FSevents on individual files,
|
296
|
+
# but it also isn't smart enough to switch to polling itself.
|
297
|
+
require 'fssm/backends/polling'
|
298
|
+
FSSM::Backends.const_set(:Default, FSSM::Backends::Polling)
|
299
|
+
end
|
300
|
+
|
294
301
|
# TODO: Keep better track of what depends on what
|
295
302
|
# so we don't have to run a global update every time anything changes.
|
296
303
|
FSSM.monitor do |mon|
|