#Ruby Blog tag archive

Tips for organizing your routes in Ruby on Rails

The routes.rb file is a crucial part of any Ruby on Rails development project. It’s essentially the map of our application, and keeping it organized is key. We usually start off with everything neat and tidy, organizing routes […]

Nico ·
13 August, 2024

Ruby on Rails Tip: Simplifying Route Searches

Did you know Ruby on Rails provides a couple of parameters for rails routes that will maximize your productivity? Let’s see how it works. Grep through Rails Routes You can grep through Rails routes with the `-g` option, […]

GG ·
5 August, 2024

Template variants in Ruby on Rails

Were you aware of template variants in Ruby on Rails? It’s an option that the method render provides and can be used in our controllers to deal with customized layouts or views. Let’s see how it works with […]

GG ·
5 August, 2024

Exploring ActiveSupport::Configurable in Ruby on Rails

Ruby on Rails offers a wide range of tools and modules to make application development more efficient and structured. One of these modules is ActiveSupport::Configurable, which provides an elegant approach to handling configurations in our classes. What […]

GG ·
2 August, 2024

Subdominios y rutas en Ruby on Rails

En este artículo te voy a contar cómo podríamos resolver de manera muy sencilla el manejo de subdominios en una aplicación Ruby on Rails. El problema Imaginemos que desarrollamos una aplicación de venta de libros de recetas de “Cómo […]

Nico ·
30 July, 2024

Diferencia entre let y let!

¿Sabías que let y let! no son lo mismo? A simple vista pueden parecerlo, pero no lo son y en este artículo te voy a explicar las principales diferencias. La respuesta corta es que let carga el […]

Clari ·
29 July, 2024
Let's talk!