From 29616e7584c30ab587f4fa026b48422d1ebaf1db Mon Sep 17 00:00:00 2001 From: Joe Marty Date: Wed, 23 Jan 2019 13:55:04 -0600 Subject: [PATCH] Update docs about strange Boolean behavior I ran into the documented Boolean issue, and tried the workaround, which didn't help - I discovered I was able to make it work by using Virtus::Attribute::Boolean rather than Axiom::Types::Boolean. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e4e98d6f..bac10512 100644 --- a/README.md +++ b/README.md @@ -309,7 +309,7 @@ boolean type you can workaround it like that: class User include Virtus.model - attribute :admin, Axiom::Types::Boolean + attribute :admin, Virtus::Attribute::Boolean end ```