class ReeDate::BeginningOfQuarter

def call(date = nil)

def call(date = nil)
  date = date || today
  first_quarter_month = date.month - (2 + date.month) % 3
  change(date, day: 1, month: first_quarter_month)
end