guycall

Results 7 comments of guycall

Yes, we are using grape-rabl. I tried adding DELETE methods into the grape-rabl test suite and had no issues. I just tried with grape 1.0.3 and stepped through the code....

I'll test with newer versions of grape and see if issue still occurs.

I am getting similar issue. Brand new M3 macbook (Sonoma 14.5). - Installed podman via homebrew. - Downloaded v0.3.0 of rails-new-aarch64-apple-darwin.tar.gz - Aliased docker to podman ``` % docker --version...

Resolved by creating symlink: `sudo ln -sf /opt/homebrew/bin/podman /usr/local/bin/docker`

I found the https://github.com/rwinch/spring-security-webauthn project via the recent Spring One presentation. The [readme](https://github.com/rwinch/spring-security-webauthn/blob/main/README.adoc) mentions "... eventually be merged into Spring Security." The youtube comments of the Spring One presentation had...

@fabiancarlos I get the same issue. If you inspect the access_token it thinks it is not expired: ``` access_token = OAuth2::AccessToken.from_hash(authenticator, token_hash) puts "Access token expired? #{access_token.expired?}" ``` If you...

What version of gcc do you have? ``` gcc --version gcc (Ubuntu 11.4.0-1ubuntu~22.04.2) 11.4.0 ``` I had the same error on Debian 13 (with gcc v14.2), but worked fine on...