Ray Zane

Results 29 issues of Ray Zane

I've configured Rspec like this (which should probably be the default): ```lua require('nvim-test.runners.rspec'):setup({ command = "bundle", args = { "exec", "rspec" }, }) ``` This works perfectly when I open...

This is admittedly not the most elegant API, but my goal is to start a discussion about how this should look. Here's how you'd subscribe and unsubscribe: ```ruby subscription =...

This issue only affects Active Record 5.2. In Active Record < 5.2, polymorphic joins will include a condition on the `_type` column. ```sql LEFT OUTER JOIN "people" ON "people"."id" =...

I maintain a gem called `baby_squeel` [here](https://github.com/rzane/baby_squeel). It depends on polyamorous, and has some overlap with ransack. The most irritating overlap is in building a join dependency from a relation,...

I totally understand that this is a private API, and I understand why polyamorous isn't currently documented. Though, it would be really nice to have a tiny bit of documentation...

It would be really convenient to have a JSON output format so that other tools could more easily wrap the CLI.

First off, I really like this tool, so thank you for making it! Imagine you have a program that slowly generates CSV lines. It'd be nice if `csvlens` could stream...

Ngrok is really powerful and has a lot of customization options. I initially used localtunnel because it is really simple, offers a JS API, and is distributed through NPM. It...

The base64 binary that ships with alpine linux considers `--decode` an invalid option. Instead, it prefers the short flag: `-d`. Simply changing to `-d` would make the script incompatible with...

bug

**Describe the bug** Normally, `build_exchange` is called upon `Network.requestWillBeSent`: https://github.com/rubycdp/ferrum/blob/5ca5e9ed5e9ac8be580589e234aadc1de6929bc0/lib/ferrum/network.rb#L387-L388 When a `whitelist` is registered, a `Fetch.requestPaused` event is also registered and causes `build_exchange` to be called again for the...