Simeon Simeonov
Simeon Simeonov
I'll second the request for dynamic configuration. The original design decision to use files seems to have been made on a very faulty assumption. Putting secrets in source code has...
This entire section of code "smarts" is questionable. For example, the [`Either[_, _]` serializer](https://github.com/json4s/json4s/blob/859cede89ff8b82da55464d21c9f88d06e9e7adb/core/src/main/scala/org/json4s/Extraction.scala#L191-L195), unless I am mistaken, does not emit information about whether the left or the right choice...
@magnolia-k it is as simple as ```scala trait Serializer[A] extends Serializable { // ... } trait KeySerializer[A] extends Serializable { // ... } ``` I would be happy to create...
👍 on adding `:paste` support. I'd be cautious about relying on `-Yrepl-class-based` as well as anything that makes the environment where `tut` executes different from that of the people following...
@cozos it's on the roadmap but not a priority at this point. PRs welcome. :)
That is very odd: the `gh-pages` branch hasn't been updated in years.
Since I did not want to patch the gem without further discussion, my workaround was external. It only works well for dates. ``` ruby # Timecop does not handle UTC...
My solution doesn't actually fix Timecop's behavior. Are you suggesting I submit it as a class-level helper method on Timecop or as a patch to Date?
@yaauie there is no `Time` normalization code in `Report#generated_on` or `create_list`, other than calling `#to_date` at some point but that's due to core business logic and not anything to do...
@danfran I am curious to know whether this worked for you.