Guest User

Untitled

a guest
Apr 25th, 2018
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. class HistoryItem < ActiveRecord::Base
  2. cattr_accessor :types
  3.  
  4. @@types = []
  5.  
  6. validates_inclusion_of :historytype, :in => types
  7.  
  8. def after_initialize
  9. puts "Called"
  10. puts self.historytype
  11. p @@types
  12. @@types << self.historytype
  13. end
  14. end
Add Comment
Please, Sign In to add comment