From b5271640485b5fdd324ae733cf4d4d10d597bd66 Mon Sep 17 00:00:00 2001 From: Joel Larsson Date: Mon, 16 Feb 2026 13:49:55 +0100 Subject: [PATCH] Add Ruby http-signature library Adds the http_signature Ruby gem (https://github.com/bolmaster2/http-signature) which implements RFC 9421 HTTP Message Signatures with support for signing and verifying both requests and responses. Co-authored-by: Cursor --- frontend/src/components/libraries.js | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/frontend/src/components/libraries.js b/frontend/src/components/libraries.js index cc8d47f..94d24be 100644 --- a/frontend/src/components/libraries.js +++ b/frontend/src/components/libraries.js @@ -73,6 +73,15 @@ const libraryList = [ sign: true, verify: true }, + { + language: 'Ruby', + maintainer: 'Joel Larsson', + repo: 'https://github.com/bolmaster2/http-signature', + request: true, + response: true, + sign: true, + verify: true + }, { language: 'NodeJS', maintainer: 'Misskey Project',