Hacker News with Generative AI: Ruby

RubyUI (Former PhlexUI): Ruby Gem for RubyUI Components (github.com/ruby-ui)
Beautifully designed components that you can copy and paste into your apps. Accessible. Customizable. Open Source.
Ruby makes advanced CLI options easy (searls.co)
If you're not a "UNIX person", the thought of writing a command line application can be scary and off-putting.
The Gang of Four is wrong and you don't understand delegation (2012) (saturnflyer.com)
The Gang of Four got it wrong. Ruby's standard library has it wrong. Rails has it wrong.
Nōdo – Call Node.js from Ruby (github.com/mtgrosser)
Exploring Ruby Ractors – I paid for for 10 cores I'm gonna use 10 cores (jpterry.com)
“I paid for 10 cores, I’m gonna use 10 cores!”
Ruby, Ractors, and lock-free data structures (iliabylich.github.io)
This story is about concurrent data structures in the context of Ruby. The goal here is to demonstrate how true parallelism can be achieved with global mutable state (which at the time of writing, is not supported by built-in Ruby primitives).
Ratomic: Provides Mutable data structures for use with Ruby's Ractors (github.com/mperham)
How to create value objects in Ruby – the idiomatic way (ghinda.com)
When writing Ruby OOP, a typical pattern might be to create an object to group multiple values together meaningfully and sometimes also add some extra methods (computed properties, predicates, representations, …) to allow the object to respond to various situations.
TruffleRuby 24.2.0 (github.com/oracle)
TruffleRuby is a high-performance implementation of the Ruby programming language.
How to create value objects in Ruby – the idiomatic way (ghinda.com)
When writing Ruby OOP, a typical pattern might be to create an object to group multiple values together meaningfully and sometimes also add some extra methods (computed properties, predicates, representations, …) to allow the object to respond to various situations.
Sign in as anyone: Bypassing SAML SSO authentication with parser differentials (github.blog)
Critical authentication bypass vulnerabilities (CVE-2025-25291 + CVE-2025-25292) were discovered in ruby-saml up to version 1.17.0. Attackers who are in possession of a single valid signature that was created with the key used to validate SAML responses or assertions of the targeted organization can use it to construct SAML assertions themselves and are in turn able to log in as any user.
OmniAI: A unified Ruby API for integrating with AI providers (github.com/ksylvest)
OmniAI provides a unified Ruby API for integrating with multiple AI providers, including Anthropic, DeepSeek, Google, Mistral, and OpenAI. It streamlines AI development by offering a consistent interface for features such as chat, text-to-speech, speech-to-text, and embeddings—ensuring seamless interoperability across platforms. Switching between providers is effortless, making any integration more flexible and reliable.
Matching Regexps 200 Times Faster (eregon.me)
You might have seen @byroot’s excellent blog post series on optimizing the json gem. From the first blog post it’s clear most of the time for generating JSON is spent in generate_json_string() and specifically in convert_UTF8_to_JSON(), i.e., in converting Ruby Strings to JSON Strings.
Sign in as anyone: Bypassing SAML SSO authentication with parser differentials (github.blog)
Critical authentication bypass vulnerabilities (CVE-2025-25291 + CVE-2025-25292) were discovered in ruby-saml up to version 1.17.0. Attackers who are in possession of a single valid signature that was created with the key used to validate SAML responses or assertions of the targeted organization can use it to construct SAML assertions themselves and are in turn able to log in as any user.
RubyLLM: A delightful Ruby way to work with AI (github.com/crmne)
A delightful Ruby way to work with AI. No configuration madness, no complex callbacks, no handler hell – just beautiful, expressive Ruby code.
Show HN: RubyLLM 1.0 – A Beautiful Ruby Way to Work with AI (rubyllm.com)
A delightful Ruby way to work with AI through a unified interface to OpenAI, Anthropic, Google, and DeepSeek.
Ruby Dooby Doo (github.com/daz4126)
Helping JS do more Ruby.
ZJIT: Building a Next Generation Ruby JIT (rubykaigi.org)
YJIT can make Ruby code run faster, but this is a balancing act, because the JIT compiler itself must consume both memory and CPU cycles to compile and optimize your code while it is running.
OmniAI 2.0: An LLM-Agnostic Ruby Library (ksylvest.com)
Today marks the release of OmniAI 2.0. 2.0 represents a significant upgrade to our Ruby library that standardizes interactions with various LLM providers. Whether you're working with Anthropic, DeepSeek, Google, Mistral, or OpenAI, OmniAI offers a consistent interface that simplifies AI integration into your Ruby applications.
Phlex for Rails Emails: Action Mailer Without ERB (camillovisini.com)
Writing Ruby all day is fun, but writing Ruby in HTML is not. In the past months, I found switching from Ruby to ERB views and partials to be interrupting my flow and therefore increasingly annoying. Enter Phlex, which is a Ruby library that allows you to write HTML (components, views, layouts) in pure Ruby. After already completely ditching ERB for Phlex in Rails views for multiple applications, I wanted to see if I could do the same for Action Mailer.
Ruby not dead it seems (gitlab.io)
Ruby is an easy to learn programming language, it was invented by a guy named Matz [1] in Japan. Ruby is a free [2] software and can be used by anyone for zero cost. Ruby’s popularity was initially confined to Japan, later it slowly trickled out to rest of the world. Things changed with the emergence of Ruby on Rails [3] which is a popular web-development framework written with Ruby.
What's the Deal with (Ruby) Ractors? (byroot.github.io)
When Ractors were announced 4 or 5 years ago, many people expected we’d quickly see a Ractor-based web server, some sort of Puma but with Ractors instead of threads. Yet this still hasn’t happened, except for a few toy projects and experiments.
Tiny JITs for a Faster FFI (railsatscale.com)
Can we have a faster FFI for CRuby? Yes.
Implementing a Game Boy emulator in Ruby (sacckey.dev)
I created a Game Boy emulator in Ruby and released it as a gem called rubyboy! (I’d be happy if you could give it a star!)
Ruby “Thread Contention” Is Simply GVL Queuing (island94.org)
For the longest time, I’ve misunderstood the phrase “thread contention”. It’s a little embarrassing that given I’m the author of GoodJob (👍) and a maintainer of Concurrent Ruby and have been doing Ruby and Rails stuff for more than a decade. But true.
Ruby Source Parsing (alchemists.io)
One powerful tool in your debugging arsenal is the ability to quickly obtain an object’s source location and/or the original source code itself.
Ruby Falcon is 2x faster than asynchronous Python, as fast as Node.js (reddit.com)
Ruby Falcon is 2x faster than asynchronous Python, as fast as Node.js, and slightly slower than Go. Moreover, the Ruby code doesn’t include async/await spam.
Better Know a Ruby Thing: Singleton Classes (noelrappin.com)
It is time to Better Know what is perhaps the Ruby-iest of Ruby things, a feature that didn’t even have an official name for several years, despite being critical to Ruby’s Object-Oriented semantics. (It only just now occurs to me that there was no official name in English, I wonder what the Japanese name for it was…).
Supercharge SQLite with Ruby Functions (julik.nl)
An interesting twist in my recent usage of SQLite was the fact that I noticed my research scripts and the database intertwine more. SQLite is unique in that it really lives in-process, unlike standalone database servers. There is a feature to that which does not get used very frequently, but can be indispensable in some situations.
The Mythical IO-Bound Rails App (byroot.github.io)
When the topic of Rails performance comes up, it is commonplace to hear that the database is the bottleneck, so Rails applications are IO-bound anyway, hence Ruby performance doesn’t matter that much, and all you need is a healthy dose of concurrency to make your service scale.