2015-05-26 15:01:10 +02:00
|
|
|
require 'capistrano/send'
|
|
|
|
|
2015-05-22 16:57:01 +02:00
|
|
|
module Capistrano
|
|
|
|
module Send
|
|
|
|
module NotifySend
|
|
|
|
def self.supported?
|
|
|
|
system('notify-send --version >/dev/null 2>&1') != nil
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-05-22 11:53:26 +02:00
|
|
|
load File.expand_path('../../tasks/notify-send.cap', __FILE__)
|