Richard Schneeman

Results 473 comments of Richard Schneeman

> What do you mean "a durable store" A cache is not persistent, it can be lossy. A cached value implies a value that can be re-generated, it's not the...

Ahh, it looks like those things got taken out in sprockets 4.x here's the 3.x branch https://github.com/rails/sprockets/blob/3.x/lib/sprockets/sass_template.rb Any ideas on backwards compatibility changes for sprockets 4? I kinda fell into...

I'm working to add deprecations for all of these code points in sprockets 3 right now. I've got some ideas on a patch that would work for this to work...

What I think I would like to do for Sprockets 4 is to fix the built in ScsscProcessor and support sassc natively inside of the `sass-rails` gem, we probably want...

I'm unclear what a `EINPROGRESSWaitWritable` is even, what causes it so I found this SO https://stackoverflow.com/questions/8277970/what-are-possible-reason-for-socket-error-einprogress-in-solaris. ``` You have a non-blocking socket and you are calling connect() in it. Since...

@natalieparellano thank you, if you can move it over that would be amazing!

> Also, I wonder if (as part of another issue) lifecycle should forbid empty string args given they seem to not be able to successfully launch the command, from what...

Also to add that float calculations can get lossy so if you're doing something like incrementing a counter in metadata and then trying to compare that count it might be...

Thanks for the excellent investigation, @natalieparellano. That all makes sense that saving as JSON and then deserializing would give us floats as per spec. JSON does not have integers (which...

A co-worker pointed out that with a spec update, it would also be best to detect those problem cases and explicitly error on them. Raising something like this for each...