News
Ditching Redis: How to Handle Web Sockets in Rails 8 with Solid Cable
2+ day, 10+ hour ago (649+ words) For years, adding a single real-time feature to a Rails app felt like signing a deal with the devil. You just wanted a simple notification bell to update without a page refresh, or a basic live chat. But the moment…...
Gem Stuffer Abuses 150+ Ruby Gems to Exfiltrate Scraped U. K. Council Portal Data
4+ day, 19+ hour ago (507+ words) Cybersecurity researchers are calling attention to a new campaign dubbed Gem Stuffer that has targeted the Ruby Gems repository with more than 150 gems that use the registry as a data exfiltration channel rather than for malware distribution. "The packages do…...
Ruby Gems Suspends New Signups After Hundreds of Malicious Packages Are Uploaded
5+ day, 11+ hour ago (180+ words) "We're dealing with a major malicious attack on Ruby Gems right now," Maciej Mensfeld, senior product manager for software supply chain security at Mend. io, said in a post on X. "Signups are paused for the time being. Hundreds of packages…...
Day 97 of #100 Days Of Code " Dev Collab: Deploying the Django Backend to Railway
6+ day, 22+ hour ago (726+ words) Today, the Django backend went live. Real URL, real Postgre SQL database, real API responses. Everything that was only accessible at localhost: 8000 is now on the internet. It took longer than expected, it always does, but by the end of…...
Milestone! 1200th PR Merged to Ruby Core
1+ week, 3+ day ago (166+ words) Recently merge my 1200th pull request to Ruby Core; almost all are documentation improvements. You can see me among the Contributors; I'm #16 (scroll down). Been doing this for six years now; hoping for six more. Having this work is a great…...
Ruby inventor Matz working on native compiler with AI help
1+ week, 4+ day ago (579+ words) Yukihiro Matsumoto - better known as Matz - is building Spinel, a native compiler for Ruby, with help from Anthropic's Claude Code. Spinel, which is on Git Hub'under the MIT license, works by parsing Ruby code into AST (abstract syntax tree) files,…...
My Tiny Rust Utils, Part 4: web. rs
2+ week, 3+ day ago (307+ words) I just do not always like seeing raw reqwest patterns repeated all over my application code. That is the whole reason src/utils/web. rs exists. I was not trying to invent an HTTP framework. I just wanted one place…...
I published a Git Hub repo for the exercises of the wroclove. rb 2026 workshop "Building Rails SPAs in Frontend Ruby with Glimmer DSL for Web". And, Glimmer DSL for Web now has official Rails 8 setup instructions. .. https: //bit. ly/4tr JOck
3+ week, 2+ day ago (48+ words) . .. Tagged with rails, ruby, showdev, tutorial. Templates let you quickly answer FAQs or store snippets for re-use. Are you sure you want to hide this comment? It will become hidden in your post, but will still be visible via the…...
Ruby Central, a non-profit organization that supports the Ruby programming language ecosystem, has revealed it is facing a 'serious financial crisis."
3+ week, 6+ day ago (90+ words) Ruby Central, a non-profit organization that supports the Ruby programming language ecosystem, has revealed it is facing a 'serious financial crisis.'GIGAZINE Furthermore, Ruby Central stated, 'We choose to move forward. We do not want any conflict, and we believe…...
Rails 8 API with Devise-JWT
4+ week, 5+ hour ago (744+ words) Here, i will be building an API and documenting my steps. if something is wrong, feel free to comment. 1. Create a Rails API application with postgresql 2. Configure Rack-CORS for API only application Update Gemfile to add/uncomment gem 'rack-cors' 3. Add…...