Owen Stephens
Owen Stephens
I accidentally created an invalid zip file by adding a single file with > 4GB of uncompressed data but without setting `Zip.write_zip64_support = true`. For example, `7z x` errors when...
Using a search query on the failing jobs page correctly restricts the displayed jobs. Upon pressing "Delete All" the prompt asks "Delete all N jobs?" where N is the count...
Add new `Style/RedundantStringEscape` cop, as suggested in #10439 ----------------- Before submitting the PR make sure the following are checked: * [x] The PR relates to *only* one subject with a...
Given that the `Hash#merge` method _does not_ modify the receiver hash, I think it's really confusing that `Hash#deep_merge` _does_. For`#merge`: ``` irb --simple-prompt merge.rb >> h = {} => {}...
We'd like to add a notification for the root project, but the Slack tab is blank (i.e. there is no content, and in particular, no link to edit the project...
## Issue In _some_ contexts, a boolean column can be referenced without an explicit operator, but in others an exception is raised. I'm not sure that this is intentionally allowed...
To explicitly allow all of: ```ruby Post.where.has { published } Post.where.has { published & (view_count >= 1) } Post.where.has { (view_count >= 1) & published } ``` Fixes #129
## Issue Attempting to `merge` two relations where one has an implicit reference to a boolean column works in Rails 7.0.7, but raises an error in Rails 7.0.8 and above....
### Steps to reproduce Similar (but I think a different issue) to #809. Granting read permission on an intermediate STI subclass as well as the STI base class leads to...
### Steps to reproduce Granting read permission on a subset of STI subclass doesn't lead to relevant records being returned by `accessible_by`. With the following STI hierarchy: ```ruby class Vehicle...