mirror of
https://github.com/joaotavora/yasnippet.git
synced 2025-10-14 05:23:04 +00:00
7 lines
317 B
Plaintext
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?} } |