require "active_generator/base" require "generators/locale/base" module Locale class JobGenerator < Rails::Generators::NamedBase include ActiveGenerator::Base include Locale::Base source_root File.expand_path('../templates', __FILE__) argument :language, type: :string, required: false, default: "en", desc: "The locale alpha code" def copy_job_file assert_valid_language! template("job.yml", "config/locales/#{language}/jobs/#{file_name}.yml") end end end if ActiveGenerator.configuration.autoload_job_generator_locale begin require "rails/generators/rails/job/job_generator" Rails::Generators::JobGenerator.class_eval do def generate_job_locale_file invoke("locale:job", [name]) end end rescue LoadError => e # Skip over missing files end end