deeeki

Results 2 issues of deeeki

handy interface for configuring `:except` and `:only` discussed #18 and asakusa.rb meetup. ``` ruby # Usage DatabaseRewinder.filter_options = { except: ["foos"] } DatabaseRewinder.clean_all ``` I named `filter_options=`, but I'll leave...

This change enables the method to receive as the following ``` ruby DatabaseRewinder.clean_with except: ["foos"] ``` while keeping compatibility. ``` ruby DatabaseRewinder.clean_with :truncation, except: ["foos"] ``` for DatabaseRewinder first-choice users...