module Rufus::Scheduler

def self.is_cron_string(s)


Returns true if the given string seems to be a cron string.
def self.is_cron_string(s)
  s.match(/.+ .+ .+ .+ .+/) # well...
end