1class RefreshConstituenciesJob < ApplicationJob
 
2  queue_as :low_priority
 
3
  • UtilityFunction - doesn't depend on instance state (maybe move it to another class?) » reek
  • Complexity 1 » saikuro
4  def perform
 
5    Constituency.refresh!
 
6  end
 
7end