module Crntb::Outputer::Whenever

Public Class Methods

build(entry) click to toggle source
# File lib/crntb/outputer/whenever.rb, line 5
        def build(entry)
          <<EOS
every '#{entry.cron_definition}' do
  command "#{entry.command}"
end
EOS
        end