File: job.rb.erb

package info (click to toggle)
ruby-sidekiq 7.3.2%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 956 kB
  • sloc: ruby: 6,094; javascript: 526; makefile: 21; sh: 20
file content (9 lines) | stat: -rw-r--r-- 140 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
<% module_namespacing do -%>
class <%= class_name %>Job
  include Sidekiq::Job

  def perform(*args)
    # Do something
  end
end
<% end -%>