97jaz
97jaz
In Racket, bindings are presumed to be mutable. (Within the binding's module, it is legal to `set!` the binding's value.) Since most bindings are not mutated (and mutation of bindings...
The `render_anywhere` gem (which this one depends on) doesn't work in Rails 6, since it [mutates `view_paths`](https://github.com/yappbox/render_anywhere/blob/master/lib/render_anywhere/rendering_controller.rb#L32), which is [no longer allowed](https://github.com/rails/rails/commit/0b0412ab531590580cd303e54da68dadd4853de3#diff-d5d92e14e3693ca777dad370615cdaa9L109). It doesn't look like `render_anywhere` is actively maintained,...
### Motivation / Background Following on the Arel work in #48261, this commit adds the ability to provide a materialization hint to a CTE in ActiveRecord. To support the hint,...
The documentation for the `arbitrary` struct says: ``` Represents a source of randomly generated values, except where the values are filtered by the function trans to produce a narrower set...
See #12 for one reason why this would be useful. It would be a good idea to mention specifics about formatting vs. parsing support.
See #14 for an example. This probably has to do with the `object-name` of the procedures in question. Maybe I just shouldn't impose contracts except at the very public-private boundary....
### Is your feature request related to a problem? Please describe. I've added instrumentation to a simple reverse proxy that uses the falcon web server, which uses separate fibers (rather...