Ruby mascot
Heads up

Posts go live on LinkedIn first. Follow there to catch them before they land here.

Spinel: The Compiled Ruby
April 25, 2026ruby

Spinel: The Compiled Ruby

Matz released Spinel, an experimental ahead-of-time Ruby compiler that produces standalone native binaries. In benchmarks it reaches up to 86x the speed of miniruby by eliminating runtime type checks through whole-program static analysis.

rubyspinelperformancecompilers
Prism for Massive-Scale Code Analysis
April 12, 2026ruby

Prism for Massive-Scale Code Analysis

Ruby 3.3 adopted Prism as its default parser. With it, you can build robust code analyzers without needing to master RuboCop's complex DSL, and it scales across thousands of files.

rubyprismaststatic-analysis
You Can Run Ruby in Less Than 150KB of RAM
March 31, 2026ruby

You Can Run Ruby in Less Than 150KB of RAM

PicoRuby brings Ruby to microcontrollers with a tiny memory footprint. This quick benchmark compares its RAM usage and execution time against standard CRuby.

rubypicorubymicrocontrollersbenchmarking
Ruby, Linux and Bluetooth
March 23, 2026ruby

Ruby, Linux and Bluetooth

Ruby talks to Bluetooth devices on Linux through D-Bus and BlueZ. This post shows how to pair a device, discover its GATT services, and subscribe to real-time battery notifications from a plain Ruby script.

rubylinuxbluetoothdbus
Ruby + SocketCAN: Listening to Your Car's Hardware
March 14, 2026ruby

Ruby + SocketCAN: Listening to Your Car's Hardware

SocketCAN exposes the CAN bus as a standard Linux network interface. This post shows how to read real OBD-II vehicle data directly from a Ruby script using nothing but the standard Socket class.

rubylinuxsocketcanobd-ii