Eric Scouten

Results 23 comments of Eric Scouten

Building on what @sunfishcode wrote, I have a trait in one of my crates (sorry, source is not public at this time) that is used in another of my programs...

If this is still an issue, I have a very small codebase which is demonstrating this. LMK and I can send it to you. (FWIW, I am also seeing red...

Here you go, about as minimal as it gets. 😄 [coverex-bug-demo.zip](https://github.com/alfert/coverex/files/431218/coverex-bug-demo.zip)

Specifically, the coverage for Elixir.Thing reports a missed line for `defstruct` as shown:

IMHO (and understand that I'm very new to Elixir) `defstruct` isn't really executable, so should be neither hit nor missed.

I filed #496 which appears to be another case of `match` and function arguments split across multiple lines as described here. rsgit is a public project; feel free to submit...

SQLite does not tell you _which_ constraint has been violated, so it's not possible to properly complete the Ecto error response. This is not a great answer, but I'm at...

As noted in the recently-updated README, I am no longer able to actively maintain this project due to some other life circumstances. I'll review a patch if one comes or...

Consider using http://www.sqlite.org/c3ref/get_autocommit.html to obtain this info. (h/t @fishcakez)