1
0
Fork 0
mirror of https://github.com/mperham/sidekiq.git synced 2022-11-09 13:52:34 -05:00
mperham--sidekiq/lib/generators/sidekiq/job_generator.rb
2021-11-17 08:35:18 -08:00

57 lines
1.3 KiB
Ruby

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