я хочу вызвать метод проверки активной записи в моем пользовательском методе проверки, например
class Asset < ActiveRecord::Base
validate :ensure_unique_identification_code
validates :name,:uniqueness=>true
def ensure_unique_identification_code
self.identifier="identifier code" #code is generated using some helper method of Asset model
validates :identifier ,:uniqueness=>true
end
end
дать ошибку
undefined method `validates' for #<Asset:0xb6692dbc>
как мы можем вызывать методы проверки в экземплярах методов модели