aboutsummaryrefslogtreecommitdiffstats
path: root/actionmailbox
diff options
context:
space:
mode:
authorGeorge Claghorn <george@basecamp.com>2018-12-28 12:32:48 -0500
committerGeorge Claghorn <george@basecamp.com>2018-12-28 12:32:48 -0500
commit837f602fa1b3281113dac965a8ef96de3cac8b02 (patch)
tree1a650b5583b0dee594b14410b095e024737e66e7 /actionmailbox
parent3ecb754786998229ac81dbca9c80505c9b057ff9 (diff)
downloadrails-837f602fa1b3281113dac965a8ef96de3cac8b02.tar.gz
rails-837f602fa1b3281113dac965a8ef96de3cac8b02.tar.bz2
rails-837f602fa1b3281113dac965a8ef96de3cac8b02.zip
Remove frozen_string_literal pragma from Action Mailbox templates
Diffstat (limited to 'actionmailbox')
-rw-r--r--actionmailbox/lib/rails/generators/mailbox/templates/application_mailbox.rb.tt2
-rw-r--r--actionmailbox/lib/rails/generators/mailbox/templates/mailbox.rb.tt2
2 files changed, 0 insertions, 4 deletions
diff --git a/actionmailbox/lib/rails/generators/mailbox/templates/application_mailbox.rb.tt b/actionmailbox/lib/rails/generators/mailbox/templates/application_mailbox.rb.tt
index be51eb3639..ac22d03cd2 100644
--- a/actionmailbox/lib/rails/generators/mailbox/templates/application_mailbox.rb.tt
+++ b/actionmailbox/lib/rails/generators/mailbox/templates/application_mailbox.rb.tt
@@ -1,5 +1,3 @@
-# frozen_string_literal: true
-
class ApplicationMailbox < ActionMailbox::Base
# routing /something/i => :somewhere
end
diff --git a/actionmailbox/lib/rails/generators/mailbox/templates/mailbox.rb.tt b/actionmailbox/lib/rails/generators/mailbox/templates/mailbox.rb.tt
index 56b138e2d9..110b3b9d7e 100644
--- a/actionmailbox/lib/rails/generators/mailbox/templates/mailbox.rb.tt
+++ b/actionmailbox/lib/rails/generators/mailbox/templates/mailbox.rb.tt
@@ -1,5 +1,3 @@
-# frozen_string_literal: true
-
class <%= class_name %>Mailbox < ApplicationMailbox
def process
end