Sha256: b819bd0499f4a6b3113ca29f04b69195678d24a51c4c79baaf51a5be44b88b65
Contents?: true
Size: 1.31 KB
Versions: 40
Compression:
Stored size: 1.31 KB
Contents
require "rails/generators/named_base" module Sidekiq module Generators # :nodoc: class JobGenerator < ::Rails::Generators::NamedBase # :nodoc: desc "This generator creates a Sidekiq Job in app/sidekiq and a corresponding test" check_class_collision suffix: "Job" def self.default_generator_root File.dirname(__FILE__) end def create_job_file template "job.rb.erb", File.join("app/sidekiq", class_path, "#{file_name}_job.rb") end def create_test_file return unless test_framework if test_framework == :rspec create_job_spec else create_job_test end end private def create_job_spec template_file = File.join( "spec/sidekiq", class_path, "#{file_name}_job_spec.rb" ) template "job_spec.rb.erb", template_file end def create_job_test template_file = File.join( "test/sidekiq", class_path, "#{file_name}_job_test.rb" ) template "job_test.rb.erb", template_file end def file_name @_file_name ||= super.sub(/_?job\z/i, "") end def test_framework ::Rails.application.config.generators.options[:rails][:test_framework] end end end end
Version data entries
40 entries across 40 versions & 1 rubygems