rokumatsumoto/boyutluseyler

View on GitHub
app/workers/cleanup_tmp_cache_worker.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

class CleanupTmpCacheWorker
  include ApplicationWorker
  def perform
    $stdout.puts 'Running rake tmp:cache:clear'
    `rake tmp:cache:clear`
  end
end