class Devise::Models::MissingAttribute

def initialize(attributes)

def initialize(attributes)
  @attributes = attributes
end

def message

def message
  "The following attribute(s) is (are) missing on your model: #{@attributes.join(", ")}"
end