Guest User

Untitled

a guest
Feb 20th, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1.  
  2. class User < ActiveRecord::Base
  3. symbolize :status , :in => [:active, :inactive]
  4. symbolize :so, :allow_blank => true, :in => {
  5. :mac => 'Mac OS X',
  6. :win => 'Windows',
  7. :linux => 'Linux'
  8. }
  9. symbolize :office, :allow_blank => true, :in => [
  10. [:kde , 'Koffice'],
  11. [:ms , 'Microsoft Office'],
  12. [:open, 'Open Office']
  13. ]
  14. end
  15.  
  16. # para a defi
Add Comment
Please, Sign In to add comment