OSDN Git Service

fix form helper
[pettanr/pettanr.git] / lib / validators / extend_balloon_validator.rb
1 class ExtendBalloonValidator < ActiveModel::EachValidator\r
2   def validate_each(record, attribute, value)\r
3     record.errors[attribute] << (options[:message] || I18n.t('activerecord.errors.messages.balloon_extend')) unless record.extend_balloon.valid?\r
4   end\r
5 end\r
6 \r