Check if top-level Libnotify is defined

This commit is contained in:
Guillaume Dott 2015-05-26 09:42:34 +02:00
parent cd38483ab7
commit 237bd42892

View File

@ -7,7 +7,7 @@ module Capistrano
module Send module Send
module Libnotify module Libnotify
def self.supported? def self.supported?
defined?(Libnotify) && Libnotify::API.instance_methods.include?(:notify_init) defined?(::Libnotify) && ::Libnotify::API.instance_methods.include?(:notify_init)
end end
end end
end end