aboutsummaryrefslogblamecommitdiffstats
path: root/activejob/lib/rails/generators/job/job_generator.rb
blob: 2115fb9f7113feb59324ee229ecc28b0f180021c (plain) (tree)
1
2
3
4
5
6
7
8
9

                                     
                      





                                                                                                          



                                         



                                     


                                                                                   

       
   
require 'rails/generators/named_base'

module Rails # :nodoc:
  module Generators # :nodoc:
    class JobGenerator < Rails::Generators::NamedBase # :nodoc:
      desc 'This generator creates an active job file at app/jobs'

      class_option :queue, type: :string, default: 'default', desc: 'The queue name for the generated job'

      check_class_collision suffix: 'Job'

      hook_for :test_framework

      def self.default_generator_root
        File.dirname(__FILE__)
      end

      def create_job_file
        template 'job.rb', File.join('app/jobs', class_path, "#{file_name}_job.rb")
      end
    end
  end
end