Max Chernyak
Max Chernyak
Sounds like a good option. What do you think about per-attribute? ```ruby attribute :name, String, writer: false # true/false/:protected ``` And for any such non-true attribute, it would also be...
Definitely agree that usually you want full-immutable. I've seen the exception recently where sometimes you have a persistable object and you want to assign `id` field only after persistence. OTOH,...
Turns out this is an ancient issue — capistrano won't scope roles of the nested task to the roles you specified on the caller task. Capistrano mailing list has a...
Hm, we're using https://github.com/rtomayko/posix-spawn to run the command, and it doesn't actually support windows. I would love a patch that makes it work on both (e.g. using http://github.com/thoughtbot/cocaine) while still...
@TheKidCoder sounds great, there's just one problem with cocaine's posix-spawn runner — it doesn't use `::Posix::Spawn::Child.new`, which seems to be the only way to use timeouts. I describe the issue...
So perhaps we should allow choosing between internal runner and cocaine via config option.
Might be redundant since cocaine has its own detection. Would be ideal to fix cocaine imo.
@TheKidCoder not sure if you're still interested, but for now I submitted an issue to fix cocaine's posix-runner, hopefully we can go from there. https://github.com/thoughtbot/cocaine/issues/81
It would be awesome if you could set `"color_scheme"` to a special value like `"inherit"`, and it would just use the main color scheme.
@guybedford This is interesting, made me question whether maps are truly independent in this PR. Part of the goal here seems to be able to support independent import maps for...