class Boolean
Ruby on Rails 7.1.6
Since v5.2.8.1Active Model Boolean Type
A class that behaves like a boolean type, including rules for coercion of user input.
-
"false","f","0",0or any other value inFALSE_VALUESwill be coerced tofalse. -
Empty strings are coerced to
nil. -
All other values will be coerced to
true.