Siim Liiser
Siim Liiser
Some functions (namely asin and acos) are only defined on a specific domain. If input outside of that domain is passed, `Math::DomainError` is raised and is not handled properly. ```...
The bitwise operators `&` and `|` naively just call that ruby method on it's arguments without any type checking. That results in a `NoMethodError` or a `TypeError` in a lot...
The max_by and min_by specification declares that the 2nd argument is an expression that returns either a number or a string. `expression->number|expression->string` However, they both have an example that specifically...
I'm not sure if this issue belongs here in rb-sys, in libclang-rb or oxy-test. Let me know if I should post this elsewhere. The [README](https://github.com/oxidize-rb/rb-sys/tree/main/gem) suggest using the libclang gem....
I wrote a short script expecting .bank_code and .branch_code to return the same values I pass into .generate. It worked well for all cases except for 2 of them. IT...
According to RFC3986 section-3.2.1, the valid characters for the userinfo component are as follows: userinfo = *( unreserved / pct-encoded / sub-delims / ":" ) This does not include the...
The :base_url attribute now accepts static headers or a custom function that returns a URL and headers. This allows us to fetch NIFs from more complicated sources, rather than just...
Most of the time when activerecord makes queries to the database, parameterized queries are used. ```ruby Comment.where(post_id: 1) # Comment Load (0.2ms) SELECT "comments".* FROM "comments" WHERE "comments"."post_id" = ?...