Rails

Shaping Rails to Your Needs, Customizing Rails Generators using Thor Templates

Templates are an easy way to customize your Rails generators to fix repetitive tasks and make your life easier.

Extract Sample Rate of an Audio File with Audio Analyzer in Rails 7.1

Extract the sample rate of an audio file with ActiveStorage::AudioAnalyzer which will return the bit rate, duration, and sample rate

Reduce load times of Rails applications using CloudFront CDN

Delivering static assets and JavaScript files with CDN can significantly improve the performance of our Rails application, resulting in faster load times and a better user experience.

Adding table names to error for duplicate column names

Table name is shown in the error when duplicate columns for the same table is entered while creating it.

Restoring data using papertrail.

PaperTrail is a very useful tool, but did you know it can help restore the deleted records as well?

Rails 7.1 Improves Support for Custom Namespaces

This patch improves the support for defining custom namespaces while autoloading files.

Rails 7.1 Introduces Default Health Check Controller

Rails 7.1 now introduces a default health check endpoint for health checks.

Manually mount react component using UJS

Mount react components manually while rendering element on JS request.

Rails 7.1 Adds ability to handle reconnects with the connected callback

Rails 7.1 has enabled subscribers to handle reconnections with the connected() callback in the Action Cable in the event of a lost connection.

Rails initializers you don't know about - Inflections

Rails comes with a lot of initializers. In this post, we will look at the inflections.rb initializer and how we can use it.