docs/BOOLEAN.md in lite-validators-1.1.0 vs docs/BOOLEAN.md in lite-validators-1.1.1
- old
+ new
@@ -17,10 +17,10 @@
#### Usage
```ruby
class User < ActiveRecord::Base
- validates :input_0, boolean: true
- validates :input_1, boolean: { check: :true_only }
+ validates :input0, boolean: true
+ validates :input1, boolean: { check: :true_only }
end
```