2009-08-30 18:37:24 +00:00
|
|
|
module FSSM::Support
|
|
|
|
class << self
|
|
|
|
def backend
|
2009-09-03 05:42:59 +00:00
|
|
|
(mac? && carbon_core?) ? 'FSEvents' : 'Polling'
|
2009-08-30 18:37:24 +00:00
|
|
|
end
|
2009-09-03 05:42:59 +00:00
|
|
|
|
2009-08-30 18:37:24 +00:00
|
|
|
def mac?
|
|
|
|
@@mac ||= RUBY_PLATFORM =~ /darwin/i
|
|
|
|
end
|
2009-09-03 05:42:59 +00:00
|
|
|
|
2009-08-30 18:37:24 +00:00
|
|
|
def carbon_core?
|
|
|
|
@@carbon_core ||= begin
|
|
|
|
require 'osx/foundation'
|
|
|
|
OSX.require_framework '/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework'
|
|
|
|
true
|
|
|
|
rescue LoadError
|
|
|
|
false
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|