LoginSignup
17
6

More than 3 years have passed since last update.

カスタムバリデーションのメソッドで「ArgumentError: You need to supply at least one validation」と言われたら

Last updated at Posted at 2020-10-08

おそらく下記のようにvalidatesと書いてしまっていると思うのでvalidateと修正する。

Class user < ApplicationRecord
  # NG
  validates :custom_method
  # OK
  validate :custom_method

  def custom_method
    ...
  end
end
17
6
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
17
6