Don't install signal handlers on Windows

This commit is contained in:
Ben Hollis 2012-04-29 19:24:50 -07:00
parent 23e0586896
commit a2ad7f26cd

View file

@ -1,8 +1,11 @@
# File changes are forwarded to the currently running app via HTTP
require "net/http"
require "fileutils"
module Middleman
WINDOWS = !!(RUBY_PLATFORM =~ /(mingw|bccwin|wince|mswin32)/i) unless const_defined?(:WINDOWS)
end
module Middleman
class Watcher
class << self
@ -31,7 +34,7 @@ module Middleman
def initialize(options)
@options = options
register_signal_handlers
register_signal_handlers unless ::Middleman::WINDOWS
end
def watch!