class Devise::Models::MissingAttribute
Public Class Methods
new(attributes)
click to toggle source
# File lib/devise/models.rb, line 5 def initialize(attributes) @attributes = attributes end
Public Instance Methods
message()
click to toggle source
# File lib/devise/models.rb, line 9 def message "The following attribute(s) is (are) missing on your model: #{@attributes.join(", ")}" end