Svyatoslav Kryukov
Svyatoslav Kryukov
Originally, I have encountered this problem when I tried to dump and load [`Faraday::Header` object](https://github.com/lostisland/faraday/blob/fcb2003178dc362888d5ccf16bfb776a4aa16f46/lib/faraday/utils/headers.rb#L102) in Oj's default mode. Reproduction (same applies to `Array` and `String` subclasses): ```ruby require 'oj'...
In `repare-commit-msg` hook I found next text: ``` #!/bin/sh if [ "{$LEFTHOOK}" = "0" ]; then exit 0 fi # lefthook_version: d41d8cd98f00b204e9800998ecf8427e cmd="lefthook install" if lefthook >/dev/null 2>&1 then exec...
Fixes #178 Probably fixes also #99 The same workaround used in Husky https://typicode.github.io/husky/#/?id=command-not-found
This PR fixes false negatives for default values wrapped into lambdas and procs. Source of the problem: ```ruby la = ->(a,b,*c) {} pr = proc {|a,b,*c|} lambda.arity #=> -3 proc.arity...
Here is example: ```ruby # storage.rb class Storage attr_reader :store def initialize @store = {} end class void def self.dynamic_attr: (Symbol name) -> void end ``` ``` ❯ steep check...
This PR makes several changes to the implementation of the internal `UnicodeNormalize` module to improve performance and reduce memory allocations. - this PR adds an early return for ASCII-only strings...
I'm thinking of including `exe/standard-gradual` into the gem to support `standard` proxying. Probably this will lead to rewriting of the glue code, that connects rubocop and rubocop-gradual.
Hey, I noticed that current implementation is differs from original C implementation on emojis. This might be a problem for multilingual systems. Example with the string from Readme: ```c #include...
This PR adds a new `formDataArrayFormat` option to `Link` and `router.visit` that duplicates the logic of `queryStringArrayFormat`, but for formData arrays serialization. ### Rationale Currently, multipart form data arrays are...
This PR adds the [Code Splitting](https://inertiajs.com/code-splitting) page to the navbar. Currently, it is only linked from the [Client-side setup](https://inertiajs.com/client-side-setup#resolving-components) page.