nosolopau/rembooth

View on GitHub
lib/notifier.rb

Summary

Maintainability
A
0 mins
Test Coverage
class Notifier
  def self.run
    Reminder.all.each do |reminder|
      reminder.send_notifications
    end
  end
end