active-hash / active_hash

A readonly ActiveRecord-esque base class that lets you use a hash, a Yaml file or a custom file as the datasource
MIT License
1.19k stars 178 forks source link

Treat nil and blank values as different #295

Closed kbrock closed 8 months ago

kbrock commented 8 months ago

Before: When searching for "", it found records with a nil value.

After: It will find nil values when searching for nil It will not find nil values when searching for ''

fixes #293