Skip to content

Instantly share code, notes, and snippets.

@balepc
Created September 2, 2009 12:02
Show Gist options
  • Save balepc/179677 to your computer and use it in GitHub Desktop.
Save balepc/179677 to your computer and use it in GitHub Desktop.
module EventsHelper
def previous_month(month)
if month == 1
12
else
month - 1
end
end
def previous_year(month, year)
if month == 1
year - 1
else
year
end
end
def next_month(month)
if month == 12
1
else
month + 1
end
end
def next_year(month, year)
if month == 12
year + 1
else
year
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment