Sha256: 9a0ca9372790b88d9fc8fbc2ab5b4dc8539a411934dd495bd8635e8a7652e06d
Contents?: true
Size: 360 Bytes
Versions: 9
Compression:
Stored size: 360 Bytes
Contents
# http://www.mikeperham.com/2012/12/09/12-gems-of-christmas-4-mailcatcher-and-mail_view/ mailcatcher_port = 1025 begin sock = TCPSocket.new('localhost', mailcatcher_port) sock.close catcher = true rescue catcher = false end ActionMailer::Base.smtp_settings = (Rails.env.development? && catcher) ? { host: 'localhost', port: mailcatcher_port, } : {}
Version data entries
9 entries across 9 versions & 1 rubygems