mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
6 lines
300 B
Ruby
6 lines
300 B
Ruby
# frozen_string_literal: true
|
|
|
|
require "mail"
|
|
|
|
# The hope is to upstream most of these basic additions to the Mail gem's Mail object. But until then, here they lay!
|
|
Dir["#{File.expand_path(File.dirname(__FILE__))}/mail_ext/*"].each { |path| require "action_mailbox/mail_ext/#{File.basename(path)}" }
|