Guest User

Untitled

a guest
Feb 21st, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1.  
  2. def month_name
  3. months[month][1]
  4. end
  5.  
  6. def short_month_name
  7. months[month][0]
  8. end
  9.  
  10. def months
  11. {
  12. 1 => ["Jan", "January"],
  13. 2 => ["Feb", "February"],
  14. 3 => ["Mar", "March"],
  15. 4 => ["Apr", "April"],
  16. 5 => ["May", "May"],
  17. 6 => ["Jun", "June"],
  18. 7 => ["Jul", "July"],
  19. 8 => ["Aug", "August"],
  20. 9 => ["Sep", "September"],
  21. 10 => ["Oct", "October"],
  22. 11 => ["Nov", "November"],
  23. 12 => ["Dec", "December"]
  24. }
  25. end
Add Comment
Please, Sign In to add comment