aboutsummaryrefslogtreecommitdiffstats
path: root/app/models/action_mailbox/inbound_email/incineratable.rb
diff options
context:
space:
mode:
authorGeorge Claghorn <george.claghorn@gmail.com>2018-12-14 08:48:21 -0500
committerGitHub <noreply@github.com>2018-12-14 08:48:21 -0500
commita9653834aded0a31d82468e1e81d90c04b3500d4 (patch)
treead69c5981cdc12b3b0a0dd37aba9128ef561239a /app/models/action_mailbox/inbound_email/incineratable.rb
parent36917b7eb6fd41b9a6385e8e7f115f665808c10e (diff)
parent4412ca6dac7dce284e2010678f7f2e276d60e4d1 (diff)
downloadrails-a9653834aded0a31d82468e1e81d90c04b3500d4.tar.gz
rails-a9653834aded0a31d82468e1e81d90c04b3500d4.tar.bz2
rails-a9653834aded0a31d82468e1e81d90c04b3500d4.zip
Merge pull request #4 from dixpac/dix/add_frozen_string_literals
Add frozen_string_literal: true to match Rails codebase
Diffstat (limited to 'app/models/action_mailbox/inbound_email/incineratable.rb')
-rw-r--r--app/models/action_mailbox/inbound_email/incineratable.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/app/models/action_mailbox/inbound_email/incineratable.rb b/app/models/action_mailbox/inbound_email/incineratable.rb
index a049b88b69..fb2461cf50 100644
--- a/app/models/action_mailbox/inbound_email/incineratable.rb
+++ b/app/models/action_mailbox/inbound_email/incineratable.rb
@@ -1,3 +1,5 @@
+# frozen_string_literal: true
+
# Ensure that the `InboundEmail` is automatically scheduled for later incineration if the status has been
# changed to `processed`. The later incineration will be invoked at the time specified by the
# `ActionMailbox.incinerate_after` time using the `IncinerationJob`.