Guest User

Untitled

a guest
Feb 21st, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. class Array
  2. # add more as you see fit
  3. ORDERS = %w(second third fourth fifth sixth seventh eighth ninth tenth)
  4.  
  5. ORDERS.each_with_index do |ord,i|
  6. define_method "#{ord}" do
  7. self[i+1]
  8. end
  9. end
  10.  
  11. end
Add Comment
Please, Sign In to add comment