Daniel P. Clark

Results 126 comments of Daniel P. Clark

I tried switching everything over from `Data` to `Object` in ruru and that works (doc tests pass). That is what Ruby is officially doing: > Agreed. How about making Data...

Hey @Zapotek, which shell are you using on Windows 10? Have you tried it with [Bash on the Linux subsystem on Windows 10](https://msdn.microsoft.com/en-us/commandline/wsl/install-win10?f=255&MSPPError=-2147217396)?

I wrote something like this for [Rutie](), but rather than using the `to_str` method call syntax I followed the `try_convert` design: * `Array.try_convert` * `Hash.try_convert` * `String.try_convert` * `Regexp.try_convert` *...

@bcardiff That's a great idea but currently Crystal's Macro system only allows relative path files to be set by absolute path _(with the possible exception of the current directory)_. So...

Yes, I like it. I've been trying to think what kind of Object it would need to be `JSON::Any` or maybe `JSON::Puller` for the `update` method… since having a `String`...

Just thinking out loud… The `get` method has a signature requiring a `&str` at the moment. I think the responsibility of the collection should be a custom object passed to...

Maybe `FileCollection` is a bad name... perhaps `PathGrouping`?

@colinbankier Yes you've understood me. I wasn't sure where the acceptance and denial of routing occured and had assumed it was in the `get` side of things. Clearly I was...

I haven't put that in the `test_helper.rb`. I guess if I'm planning on hardcoding the environment like that I could put it in my `.bashrc`. So it's not super important...

Ah. Thanks again!