method

application_job_file_name

Importance_0
v7.0.0 - Show latest stable - 0 notes - Class: JobGenerator
application_job_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 activejob/lib/rails/generators/job/job_generator.rb, line 35
        def application_job_file_name
          @application_job_file_name ||= if mountable_engine?
            "app/jobs/#{namespaced_path}/application_job.rb"
          else
            "app/jobs/application_job.rb"
          end
        end
Register or log in to add new notes.