Class: Rails::Generators::JobGenerator
- Defined in:
- activejob/lib/rails/generators/job/job_generator.rb
Overview
:nodoc:
Class Method Summary collapse
Instance Method Summary collapse
Methods inherited from NamedBase
Methods inherited from Base
base_root, class_option, default_source_root, desc, exit_on_failure?, hide!, hook_for, inherited, namespace, remove_hook_for, source_root
Methods included from Actions
#add_source, #environment, #gem, #gem_group, #generate, #git, #github, #initialize, #initializer, #lib, #rails_command, #rake, #rakefile, #readme, #route, #vendor
Constructor Details
This class inherits a constructor from Rails::Generators::NamedBase
Class Method Details
.default_generator_root ⇒ Object
16 17 18 |
# File 'activejob/lib/rails/generators/job/job_generator.rb', line 16 def self.default_generator_root __dir__ end |
Instance Method Details
#create_job_file ⇒ Object
20 21 22 23 24 25 26 27 28 |
# File 'activejob/lib/rails/generators/job/job_generator.rb', line 20 def create_job_file template "job.rb", File.join("app/jobs", class_path, "#{file_name}_job.rb") in_root do if behavior == :invoke && !File.exist?(application_job_file_name) template "application_job.rb", application_job_file_name end end end |