Skip to content

Instantly share code, notes, and snippets.

require 'date'
class Officiant
def willing_to_officiate_wedding?(groom, bride, date, location)
if busy?(date)
return false
end
if too_far?(location)
return false
end