method
application_mailer_file_name
v6.1.3.1 -
Show latest stable
- Class:
Rails::Generators::MailerGenerator
application_mailer_file_name()private
No documentation available.
# File actionmailer/lib/rails/generators/mailer/mailer_generator.rb, line 29
def application_mailer_file_name
@_application_mailer_file_name ||= if mountable_engine?
"app/mailers/#{namespaced_path}/application_mailer.rb"
else
"app/mailers/application_mailer.rb"
end
end