Roman
Roman
Hi there, we just introduced a secondary database to our Rails 6 app and were surprised to see `db:migrate` fail with this error: ``` Errno::ENOENT: No such file or directory...
Addresses https://github.com/daxtens/fast_secure_compare/issues/2
The existing code for cookie validation was written 9 years ago, before the [RFC 6265](https://tools.ietf.org/html/rfc6265). So it only supports one level of subdomains between the cookie domain-value and the requested...
Hi, when trying to delete a non-existing reference using [delete_ref](https://github.com/octokit/octokit.rb/blob/4534c71e017d13b5518d9bd259b795863b282a6d/lib/octokit/client/refs.rb#L111-L113), the behavior doesn't match the documentation. The call is expected to return false, but instead it raises an `Octokit::UnprocessableEntity`. This...
Allow to pass `user_id` to `Users#user_photos`, like in other methods(e.g. `user_friends`).
Let's say an API has a limit of 100 calls per minute. And there's 2 kinds of jobs — one makes 2 calls, the other makes 3. To calculate the...
Hi, When trying to use the package, unfortunately, the compilation fails with the following error. It seems that `Application.spec/2` somehow is returning nil. This is in a context of an...
Hi! There's an inconsistency(bug?) depending on whether an event spans the week boundary. For example, event on March 17-19(Friday-Sunday) is displayed, as expected, in cells 17 to 19. However, March...
I found this line that only exposes the refresh token if the access token has an expiration time https://github.com/omniauth/omniauth-oauth2/blob/01fbfb5f8613a8f6bf1bf661a0f29ea9f8e2c26b/lib/omniauth/strategies/oauth2.rb#L41 My problem is, Twitch OAuth has expiring access tokens, but they...
### Steps to reproduce Having the following form declaration: ``` ruby class FooForm < Reform::Form property :foo validates_with DoesntMatterValidator, attributes: [:foo] end class DoesntMatterValidator < ActiveModel::EachValidator def validate_each(record, attribute, value);...