fields ~w(email password encrypted_password)required [:email, password]
fields ~w(email password encrypted_password)required ~s(email password)
I know ~s is used for string right now, but I believe it's better if we can follow the Ruby's convention where s is used for symbols and w is q(quoted) is used for strings.