I want a method to be executed every 5 minutes, I implemented whenever for ruby (cron). But it does not work. I think my method is not accessible. The method I want to exec
There are some ways to declare a static method in RoR.
#1
class YourClassName class << self def your_static_method (params) # Your code here end end end
#2
class YourClassName def self.your_status_method // Your code here end end