19 lines
256 B
Ruby
Raw Normal View History

require 'capistrano/send'
2015-05-26 11:25:40 +02:00
begin
require 'mail'
rescue LoadError
end
module Capistrano
module Send
module Mail
def self.supported?
defined?(::Mail)
end
end
end
end
load File.expand_path('../../tasks/mail.cap', __FILE__)