aboutsummaryrefslogtreecommitdiffstats
path: root/actionmailer/lib/action_mailer/caching.rb
diff options
context:
space:
mode:
Diffstat (limited to 'actionmailer/lib/action_mailer/caching.rb')
-rw-r--r--actionmailer/lib/action_mailer/caching.rb22
1 files changed, 0 insertions, 22 deletions
diff --git a/actionmailer/lib/action_mailer/caching.rb b/actionmailer/lib/action_mailer/caching.rb
deleted file mode 100644
index 8e659981a1..0000000000
--- a/actionmailer/lib/action_mailer/caching.rb
+++ /dev/null
@@ -1,22 +0,0 @@
-require 'action_dispatch/caching'
-
-module ActionMailer
- module Caching
- extend ActiveSupport::Autoload
- extend ActiveSupport::Concern
- included do
- include ActionDispatch::Caching
- end
-
- def instrument_payload(key)
- {
- mailer: mailer_name,
- key: key
- }
- end
-
- def instrument_name
- "action_mailer"
- end
- end
-end