#!/usr/bin/env ruby # You might want to change this ENV["RAILS_ENV"] ||= "production" require File.expand_path(File.join(File.dirname(__FILE__), "..", "..", "config", "environment")) $running = true Signal.trap("TERM") do $running = false end while($running) do # Replace this with your code Rails.logger.auto_flushing = true Rails.logger.info "This daemon is still running at #{Time.now}.\n" sleep 10 end