Guest User

Untitled

a guest
Jun 13th, 2018
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. >> reload!
  2. Reloading...
  3. => true
  4.  
  5. >> Paytype.all.collect{|t| p [t.display, t.value]}
  6.  
  7. #<Paytype:0xb6ffcf88>[nil, "check"]
  8. ["Credit Card", "cc"]
  9. ["Purchase Order", "po"]
  10. => [nil, nil, nil]
  11.  
  12. >> Paytype.all.collect{|t| p [t.display, t.value]}
  13.  
  14. ["Check", "check"]
  15. ["Credit Card", "cc"]
  16. ["Purchase Order", "po"]
  17. => [nil, nil, nil]
Add Comment
Please, Sign In to add comment