Flowdock
method

application_mailer_file_name

Importance_0
v5.1.7 - Show latest stable - 0 notes - Class: Rails::Generators::MailerGenerator
application_mailer_file_name() private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File actionmailer/lib/rails/generators/mailer/mailer_generator.rb, line 27
        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
Register or log in to add new notes.