Joshua Crowgey
Joshua Crowgey
This will allow users to look up any name they may imagine.
Facilitate usage in a pipeline by providing machine--readable output. JSON with toggleable pretty-print is probably a first-choice here because of wonderful things like jq.
We gotta do something to stand out from dig :)
[RFC 7766] says it's a requirement: > Section 6.1.3.2 of [RFC1123] is updated: All general-purpose DNS > implementations MUST support both UDP and TCP transport. [RFC 7766]: https://tools.ietf.org/html/rfc7766
See RFC2673 for a potential representation that a CLI arg could deal with. [RFC2673]: https://tools.ietf.org/html/rfc2673
I've got a rudimentary custom error type which (on current rust) generates deprecation warnings at compile time: ``` warning: trait objects without an explicit `dyn` are deprecated --> src/errors.rs:17:32 |...
gcalclirc has a bit of an awkward format. pip, tox, other programs in the python ecosystem use toml for configuration files. related #322 #381
I want to set up some sort of integration testing where we ensure that things actually run and look right from the perspective of the cli user.
Because many of the GoogleCalendarInterface methods return None on error (rather than raising) and because many of the tests just run the method without asserting, we're not getting good software...