Nathaniel Bibler

Results 11 issues of Nathaniel Bibler

If you declare a directory instruction in the Gemfile using a directory with spaces, gem bundle fails. `directory "/Users/nathan/Code/Open Source/rails", :glob => "{*/,}*.gemspec"` I created a small (one line) patch...

The internal implementation of the `at` and `on` matchers rely on converting Time instances to strings. However, prior to converting to strings, they don't normalize on a timezone (like UTC)....

The current spec suite fails for the `be_delayed` matcher with `uninitialized constant Sidekiq::Extensions::DelayedClass`. According to [the Sidekiq Upgrade doc](https://github.com/mperham/sidekiq/blob/master/5.0-Upgrade.md#whats-new): > The Delayed Extensions delay, delay_in and delay_until APIs are no...

### Steps to reproduce Using a server-side version of git at `>= 2.35.2` introduces fixes for [CVE-2022-24765](https://github.blog/2022-04-12-git-security-vulnerability-announced/#cve-2022-24765). Part of these fixes introduce a new `safe.directory` setting in git which is...

The README indicates that if the `token_payload` is left unset, then it: > Defaults to a randomly generated token in a hash: { token: "RANDOM-TOKEN" } However, that is not...

There doesn't appear to be direct support for [ActiveRecord's "new" numericality `in:` range](https://guides.rubyonrails.org/active_record_validations.html#numericality) check: ```ruby class MyRecord < ApplicationRecord validates :progress, numericality: { in: 0..100 } end ``` Attempting to...

The soap4r gem currently uses httpclient gem which is not currently disabled when used with fakeweb (allow_net_connect = false). It looks as though some work has been done at http://github.com/dkubb/fakeweb/commit/430bdc3cbed18d38f8a2391053c26e9e2262d671...

The client should be updated to allow for existing clients to updated to add `.strip` before requiring it.

The current implementation sets a default `read_timeout` on Net::HTTP to 60 seconds (per a constant). There is seemingly no trivial way to set the `open_timeout`, however. From Faraday's Net::HTTP adapter:...

![Y U NO WRAP THEM?](http://cdn.memegenerator.net/instances/400x/23729997.jpg) It'd be nice if: A) the Faraday exceptions were all wrapped. I'm using Relax, not Faraday! ;) and B) If there were an obvious or...