Skip to content

Instantly share code, notes, and snippets.

@kazuhisa
Created April 1, 2014 07:14
Show Gist options
  • Save kazuhisa/9909317 to your computer and use it in GitHub Desktop.
Save kazuhisa/9909317 to your computer and use it in GitHub Desktop.
class SongTagValidator < ActiveModel::Validator
def validate(record)
if record.tags.size > 10
record.errors[:base] << 'タグは10こまでです'
end
end
end
@logictkt
Copy link

logictkt commented Apr 1, 2014

了解しました!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment