惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Last Week in AI
Last Week in AI
阮一峰的网络日志
阮一峰的网络日志
P
Proofpoint News Feed
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
MongoDB | Blog
MongoDB | Blog
云风的 BLOG
云风的 BLOG
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
J
Java Code Geeks
WordPress大学
WordPress大学
T
The Blog of Author Tim Ferriss
V
Visual Studio Blog
小众软件
小众软件
Microsoft Azure Blog
Microsoft Azure Blog
博客园_首页
IT之家
IT之家
Vercel News
Vercel News
C
Check Point Blog
Google DeepMind News
Google DeepMind News
月光博客
月光博客
D
DataBreaches.Net
酷 壳 – CoolShell
酷 壳 – CoolShell
美团技术团队
Y
Y Combinator Blog
Hugging Face - Blog
Hugging Face - Blog

Ruby on Rails: Compress the complexity of modern web apps

Safer to_i coercion, custom to_fs formats, and more! This Week in Rails: May 16, 2026 This Week in Rails: May 8, 2026 This Week in Rails: May 1, 2026 Active Record gets better every week Great big Rails World 2026 update: CFP, Corporate Support tickets, workshops Query command for database queries and more Explicit query: and body: kwargs for integration tests and more! Speedup ActiveRecord::LogSubscriber#sql_color and more! This Week in Rails: March 27, 2026 Rails Versions 8.0.5 and 8.1.3 have been released! Rails Versions 7.2.3.1, 8.0.4.1, and 8.1.2.1 have been released! This Week in Rails: March 20, 2026 Validate URI scheme in Action Text and more This Week in Rails: March 6, 2026 Planning Center is the newest Rails Foundation Contributing member Action Text gets Markdown conversion, editor links in devcontainers, and more! BARRA seeks Rails developer Joe Agliozzo is looking for a Rails developer The rise of lighttpd as the alternative web server When longer is better and more is more Snowdevil: First e-tailer on Rails Natural selection for frameworks in Ruby vs Java Address book tutorial in Portuguese Becoming a better programmer with Rails 10 Things Every Java Programmer Should Know About Ruby Really Getting Started in Rails Off the Treadmill, Onto the Rails Rails 0.9.5: A world of fixes and tweaks Rich clients with Rails and XUL
Rails Luminary 2025, dynamic rate-limiting options, perfo...
David Heinemeier Hansson · 2025-11-14 · via Ruby on Rails: Compress the complexity of modern web apps

Friday, November 14, 2025
Posted by Greg

Happy Friday! This is Greg, bringing you the latest changes from the Rails codebase.

The 2025 Rails Luminary nominations are open.
If you know of someone who has consistently gone above and beyond to contribute to the framework, triaging bugs, improving performance, adding helpful features or documentation, creating or maintaining gems, etc. please nominate them for the 2025 Rails Luminary Award by Dec 3.

Remove explicit –config from RuboCop binstub templates
By removing the explicit config flag from the RuboCop binstub templates, this change allows RuboCop’s cascading config feature to work properly, enabling subdirectory-specific configurations.

Enhance rate limiting to support dynamic to: and within: options
This pull request changes the to and within options of the rate limiter to accept static values(as before), instance method names as symbols, and callables(lambdas/procs) that are evaluated in the controller context.

Optimize String#strip_heredoc
This pull request speeds up String#strip_heredoc by 1.5x to 5x when yjit is enabled. The new version doesn’t allocate any strings to find the minimum_indent to be stripped. Instead uses StringScanner#skip per each line to count whitespace char length.

Reset parallel test tables by deleting
With this change, on MySQL parallel test database table reset will use DELETE instead of TRUNCATE. Truncating on MySQL is very slow even on empty or nearly empty tables. As a result of this change auto increment counters are now no longer reset between test runs on MySQL and the SKIP_TEST_DATABASE_TRUNCATE environment variable no longer has any effect.

You can view the whole list of changes here.
We had 22 contributors to the Rails codebase this past week!

Until next time!

Subscribe to get these updates mailed to you.