17 lines
229 B
Ruby
Raw Normal View History

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__)