Emmanuel (sub to my Rails YouTube)
banner
siaw23.bsky.social
Emmanuel (sub to my Rails YouTube)
@siaw23.bsky.social
The Rails Changelog Podcast Host. ⚡️ This Week In Rails co-editor. I post about Ruby & Rails. Boxing. 📺 http://youtube.com/@siaw23

Blog 📝 → https://hayford.dev/
Podcast 🎙️ → https://www.railschangelog.com
LinkedIn → https://www.linkedin.com/in/siaw23
Added Ruby code highlighting to RailsERD.com. Moreover, with breadth-first search (BFS), you can now pick a table and view its links to other tables. You can even adjust how far the BFS explores using the "Highlight Depth" feature. It's fast and interactive. Give it a try!
September 27, 2025 at 7:21 PM
I've enhanced railserd.com by adding a feature to highlight connected nodes in large tables simplifying ERDs. Additionally, default Rails tables are now hidden to reduce clutter.
September 26, 2025 at 5:29 PM
I could use some help if anyone is sitting on HN right now :)
September 25, 2025 at 4:50 PM
Witnessing your own application among the list of apps you frequently use is a satisfying feeling, especially knowing it will soon be available to others. I'm particularly thrilled about an upcoming feature that will provide AI support for childcare professionals. I can hardly wait!
September 7, 2025 at 4:36 AM
Just as Ruby uses `nil` to mean “no value,” UUIDs define an all-zeros “nil UUID,” available in Rails as `Digest::UUID.nil_uuid` which could come in handy if you’re looking for type consistency in APIs, etc.
August 28, 2025 at 7:00 AM
A lot of the This Week In Rails issues don't disappoint, this one is no different. I published a new issue! world.hey.com/this.week.in...
Structured Event Reporting lands in Rails!
Hi! Emmanuel Hayford here with some Rails codebase updates for you! Add #assert_events_reported test helper Rails added a new test helper that lets you assert multiple events were reported within a…
world.hey.com
August 15, 2025 at 9:08 PM
I published a new edition of This Week In Rails. The first entry is quite interesting, check it out:

world.hey.com/this.week.in...
Deprecating Associations, Cleaner Backtraces, and Smarter Defaults
Hi! Emmanuel Hayford here with some cool updates for you. 😎 Deprecated associations You can now mark associations as deprecated using: `has_many :posts, deprecated: true` Active Record will report any...
world.hey.com
July 5, 2025 at 6:48 AM
I've spent the last 3 days building something I've always wanted to have for myself. Things are shaping up nicely. Of course, I'm using Rails, Hotwire and considering slapping Trix in there as well! 🤞
June 10, 2025 at 7:44 PM
@byroot.bsky.social from Rails and Ruby core and senior staff engineer at Shopify, joined me on The Rails Changelog Podcast to talk everything about tuning performance in Ruby on Rails Apps. This episode is packed. Listen: share.transistor.fm/s/23962290
029: Tuning Ruby on Rails App Performance with Jean Boussier | The Rails Changelog | Episode 29
share.transistor.fm
January 24, 2025 at 11:59 AM
Some awesome news for the Ruby community!
December 9, 2024 at 4:25 PM
Excited to announce that Jean Boussier—Rails Core team member, Ruby commiter, and Senior Staff Engineer at Shopify—will join me on The Rails Changelog to delve into Ruby on Rails Performance Optimization! Send in your questions! 🔴
The Rails Changelog
Stay in the loop with development news around Ruby on Rails and Ruby. Hosted by Emmanuel Hayford.
buff.ly
November 27, 2024 at 6:16 PM
Just snagged an early bird ticket to Ruby Community Conference in Kraków—it's practically in my backyard... no way I'm missing it. Can't wait!
Ruby Community Conference - Winter 2025
Get ready for Ruby Community Conference. Join our amazing speakers for awesome portion of Ruby
buff.ly
November 27, 2024 at 6:16 PM
Reposted by Emmanuel (sub to my Rails YouTube)
I already secured my ticket for #ruby community conference so I can spread the news that early bird tickets are available 🗣

@rosa.codes and @tenderlove.dev on stage in Kraków Feb 28th rubycommunityconference.com

Who's coming?
Ruby Community Conference - Winter 2025
Get ready for Ruby Community Conference. Join our amazing speakers for awesome portion of Ruby
rubycommunityconference.com
November 27, 2024 at 10:12 AM
Reposted by Emmanuel (sub to my Rails YouTube)
Writing this book was demanding, and while very rewarding, not particularly lucrative. Sales events like Black Friday really help!

Please consider adding a rating, review, sharing, or buying a copy. Your support fuels new updates, editions, and future titles. Thanks!
andyatkinson.com/pgrailsbook
High Performance PostgreSQL for Rails Book
Software Engineer, Author, Consultant
andyatkinson.com
November 26, 2024 at 3:41 PM
There's a new official Ruby on Rails Guide on performance tuning that you probably have not seen that I think every Rails developer should read once at least:
Tuning Performance for Deployment — Ruby on Rails Guides
Tuning Performance for DeploymentThis guide covers performance and concurrency configuration for deploying your production Ruby on Rails application.After reading this guide, you will know: Whether…
buff.ly
November 25, 2024 at 7:51 AM
I had paid for a Rails Changelog (https://buff.ly/3ZcxIHn) logo earlier. It was too complicated visually and for print. I designed this one myself a few months ago. Presenting the fresh logo for the Rails Changelog, everyone! Keep an eye out for stickers at conference venues! 🥳
November 21, 2024 at 7:23 AM
Reposted by Emmanuel (sub to my Rails YouTube)
Created a new Rails 8 app. Wanted #postgresql not null constraints in generated migrations, w/o editing each migration.

Turns out it's now possible. With a bang! 💥

rails generate scaffold Account name:string!

www.mintbit.com/blog/migrati...

@siaw23.bsky.social @winsletts.bsky.social
Migrations in Rails 8: Using the New Not Null Shortcut
In the latest version of Ruby on Rails (Rails 8), developers have been given a handy new shortcut for adding a NOT NULL constraint to database columns. This small but powerful enhancement simplifies t...
www.mintbit.com
November 20, 2024 at 10:45 PM
Some folks run jobs in transactions causing all sorts of errors in productions. Rails has made Active Job smarter: Active Job will automatically defer a job until after a transaction has committed and drop the job if the transaction is rolled back. Consider the following:
November 20, 2024 at 7:31 PM
Rails allows you to call EXPLAIN on relations like `User.all.explain` but did you know you could also run EXPLAIN on queries returned by `first`, `last`, `pluck` and aggregate functions like `count`, `average`, `maximum`, `minimum` and `sum`? Optimise away!
November 19, 2024 at 7:14 PM
RSpec has offered this capability for quite some time, but in case you missed it, if your Rails app uses minitest, you can now execute tests within specified line ranges. For instance, only the tests found between lines 10 and 20 will be executed in this example.
November 19, 2024 at 3:10 PM
Scrolling through my photos from #RailsWorld, I almost forgot that Rails is set to introduce even more exciting features beyond what's already available in Rails 8. For most apps, ElasticSearch won't be necessary anymore, as Active Record Search will take its place!
November 19, 2024 at 11:13 AM
TIL about `wait` option's `polynomially_longer` which applies a wait time algo involving some jitter and `Kernel.rand` resulting in wait intervals of 3, 18, 83, ... n seconds. In this example the jobs stops after 10 retries. Sweet!
November 17, 2024 at 4:40 PM
I was joined by @zverok.bsky.social to talk about Ruby's Data class, numbered block parameters, functional programming in Ruby and a bit about life as a soldier in the Ukrainian Army. 🇺🇦

share.transistor.fm/s/b9763421
028: Discussing Ruby's Data class, some Ruby quirks with Victor Shepelev | The Rails Changelog | Episode 28
share.transistor.fm
November 8, 2024 at 1:48 PM