stringer-rss/stringer

View on GitHub
app/jobs/callable_job.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

class CallableJob < ApplicationJob
  def perform(callable, *, **)
    callable.call(*, **)
  end
end