yasnippet/extras/imported/rails-mode/Validations/validates_length_of if.yasnippet

7 lines
317 B
Plaintext

# -*- mode: snippet -*-
# key: vlif
# contributor: Translated from TextMate Snippet
# name: validates_length_of if
## condition: "source.ruby.rails"
# --
validates_length_of :${1:attribute}, :within => ${2:3..20}${3:, :on => :${4:create}, :message => "${5:must be present}"}, :if => proc { |obj| ${6:obj.condition?} }