task-notifier 239 Bytes
#!/usr/bin/env ruby
require File.dirname(__FILE__) + '/../config/environment'

Person.with_pending_tasks.each do |p|
  PendingTaskNotifier.deliver_notification(p)
  RAILS_DEFAULT_LOGGER.info('deliver notification for ' + p.identifier)
end