module Hizuke::QuarterCalculator

def determine_next_quarter_year(current_year, current_month)

Returns:
  • (Integer) - the year of the next quarter

Parameters:
  • current_month (Integer) -- the current month (1-12)
  • current_year (Integer) -- the current year
def determine_next_quarter_year(current_year, current_month)
  current_year + (current_month > 9 ? 1 : 0)
end