Ruby

Ruby, Rails, jobs, tooling, and performance changes.

  • 4 Tracked terms
  • Last 30 days Feed window

What this topic collects on

An article joins this feed when it matches these terms. Each one is also a search of its own.

Latest in Ruby


forkast.news > csa-labs-links-openai-testing-agents-to-rubygems-supply-chain-attack

CSA Labs Links OpenAI Testing Agents to RubyGems Supply Chain Attack

23+ min ago   (143+ words) A CSA Labs research note reconstructs a May 2026 campaign where OpenAI testing agents uploaded 2,000+ malicious packages to RubyGems, exploiting the registry's automated documentation build for remote code execution. The third agent swarm incident in four months. In May 2026, the RubyGems…...


dev.to > syrian963 > count-on-a-prefetched-relation-is-free-filter-costs-a-query-per-row-4acm

count() on a prefetched relation is free. filter() costs a query per row.

4+ day, 12+ hour ago   (599+ words) Twelve queries where you expected two, in a loop that looks like somebody already optimised it. Here is a page that is slower than the version with no optimisation in it at all: Delete the prefetch_related and it is eleven. The…...


dev.to > bruno_costanzo > fundamental-analysis-in-ruby-straight-from-sec-edgar-45b1

Fundamental analysis in Ruby, straight from SEC EDGAR

1+ week, 1+ day ago   (630+ words) fundamentalista is a Ruby gem for fundamental analysis of listed companies. Version 0.6.0 is on RubyGems. Fundamentalista.configure { |c| c.edgar_user_agent = "Acme Research [email protected]" } apple = Fundamentalista.company("AAPL") year = apple.financials.latest year.income.revenue # BigDecimal year.ratios.roe year.ratios.cash_conversion_cycle year.piotroski....


dev.to > marcoblch > i-added-circuit-breakers-to-a-rails-app-and-had-to-patch-the-gem-twice-4fja

I Added Circuit Breakers to a Rails App and Had to Patch the Gem Twice

1+ week, 1+ day ago   (840+ words) 📖 Originally published on meridianbuild.dev my engineering blog documenting the real bugs and decisions behind OutfitMaker. OutfitMaker leans on a lot of external services. Outfit suggestions, wardrobe image analysis, missing-item detection and trip planning all call Gemini through Vertex AI....


dev.to > constdrop > stop-writing-ruby-tests-in-js-template-literals-meet-rspec-wasm-oco

Stop Writing Ruby Tests in JS Template Literals: Meet rspec-wasm

1+ week, 3+ day ago   (210+ words) If you have built applications with ruby.wasm, you might have encountered a frustrating developer experience when writing unit tests. Testing Ruby logic compiled to WebAssembly usually meant embedding Ruby code inside JavaScript template literals and asserting the results using…...


dev.to > outcomer > six-months-later-the-bundle-is-still-alive-257j

Six Months Later, the Bundle Is Still Alive

1+ week, 4+ day ago   (355+ words) So, it's been half a year since the first stable version of Symfony JSON Schema Validation Bundle was released, which turned out to be version 3. Someone is actually using the bundle consistently. It already has around 150 installations, and that number…...


dev.to > rubycoderai > rubycoderai-a-growing-resource-hub-for-ruby-developers-building-with-ai-4jho

RubyCoder.ai: A Professional Network for the Ruby Community

2+ week, 57+ min ago   (468+ words) Ruby has one of the most established developer communities in software, but the knowledge, tools and people that make up that ecosystem are often spread across dozens of different platforms. RubyCoder.ai is a professional network and resource platform built…...


securityweek.com > critical-ruby-on-rails-vulnerability-in-attackers-crosshairs

Critical Ruby on Rails Vulnerability in Attackers’ Crosshairs

2+ week, 9+ hour ago   (610+ words) Named KindaRails2Shell, the arbitrary file read flaw allows attackers to extract secrets and execute arbitrary code remotely. Hackers are exploiting a critical-severity Ruby on Rails vulnerability that leads to remote code execution (RCE), VulnCheck warns. Tracked as CVE-2026-66066 (CVSS score of…...


dev.to > muhammetsafak > dont-pick-a-partial-index-for-speed-what-i-measured-on-a-10m-row-postgres-queue-table-1mb9

Don't pick a partial index for speed: what I measured on a 10M-row Postgres queue table

3+ week, 1+ day ago   (1260+ words) Early in August someone asked me a question: on a queue table where a few thousand pending rows sit among millions of completed ones, should they use a partial index or a plain one? I said yes, this is the…...


dev.to > ashitoshh01 > i-finally-understood-why-database-indexes-make-queries-faster-226k

I Finally Understood Why Database Indexes Make Queries Faster

3+ week, 1+ day ago   (199+ words) I used to think adding an index to a database was basically a magic “make this query faster” button. Then I understood what was actually happening underneath. Imagine a users table with 1 million records. Without an index, the database may…...