Advertisement
Guest User

Untitled

a guest
Jul 6th, 2015
218
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. validates_inclusion_of :time_zone, in: ActiveSupport::TimeZone.zones_map(&:name)
  2.  
  3. validates :time_zone,
  4. inclusion: {
  5. in: ActiveSupport::TimeZone.zones_map.keys
  6. }
  7.  
  8. validates_inclusion_of :time_zone,
  9. :in => ActiveSupport::TimeZone.zones_map(&:name).keys,
  10. :message => "is not a valid time zone"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement