Rails

Rails 7.1 Introduces Autoload Lib and Ignore Sub-Directories with config.autoload_lib(ignore:) Method

Autoloading lib directory isn't always straightforward. In this blog post, we'll delve into the autoloading of the lib directory using config.autoload_lib(ignore:).

Enhancing Security in Ruby on Rails - SSL Enforcement by Default

Rails 7.1 enables force_ssl=true in production by default.

Rails 7.1 Now Allows ErrorReporter To Handle Several Error Classes

Rails introduces handle method for ErrorReporter API

Set And Restore Public Attributes Around a Block Using Object#with

We can use Object#with method as shorthand for the common begin/ensure pattern to save the value of an attribute, setting a new value, and then restoring the previous value.

Open Ranges Are Now Supported By The Object#in? Method In Rails

We can use Object#in? method to check open date ranges i.e. beginless and endless ranges.

Introducing Line Range Filtering in Rails 7.1 Testing

Rails 7.1 introduces line range filtering for running specific tests within a test file based on line numbers.

Rails 7.1 Stores secret_key_base in Credentials Locally

Rails 7.1 stores secret_key_base in credentials instead of secrets, following the deprecation of the secrets API for enhanced security

Integrate Replicate in Rails Application

Integrate Replicate in Rails application and effortlessly run various machine learning models in the cloud using Replicate

Sort Your Rails Models By The Order of their Associations

Sort your Rails models by the order of their belongs_to associations using ActiveRecord::Reflection.

Rails 7.1 now allows matching exception messages to assert_raises assertion.

Check the exception and the message raised by rails or custom errors in tests together with assert_raises in a single line.