Jonathan White
Jonathan White
I'd also like to propose adding `isNot(matcher)` to this to make it easier to negate matchers. ```dart extension NegationMatcher on Matcher { Matcher inverse() => isNot(this); } ```
Appreciate it! I've been wracking my brain trying to understand how to implement these. They come straight out of the contacts2.db file, but have to be processed somehow...
You can upload them manually on the releases page. I do have a script though. You'll need to customize it a TINY bit to get it to work for you...
Actually, someone is going to help me figure out Travis CI today so it can build automatically for me
Codemagic will require a script to be written still. They don't integrate directly with github in Way that allows access to releases from their gui
I'd also like to propose adding `isNot(matcher)` to this to make it easier to negate matchers. ```dart extension NegationMatcher on Matcher { Matcher inverse() => isNot(this); } ```