Guest User

Untitled

a guest
Jun 21st, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. module MetaTimeDSL
  2. {
  3. :m_second => 1,
  4. :m_minute => 60,
  5. :m_hour => 3600,
  6. :m_day => 86400,
  7. :m_week => 604800,
  8. :m_month => 2592000,
  9. :m_year => 31471200,
  10. }.each do |meth, amount|
  11. define_method meth do
  12. self * amount
  13. end
  14. alias_method "#{meth}s".intern, meth
  15. end
  16. end
Add Comment
Please, Sign In to add comment