class NonNilValidator

Validates that an attribute’s value is not ‘nil`, but does allow blank, so is an alternative to `validate :attribute, presence: true` when empty should be allowed, but not `nil`.

@example Validation declaration

validates :attribute,
          non_nil: true