#Ruby Blog tag archive

Ruberto, a gem that integrates Uber into your Ruby project

Ruberto is a Ruby gem that allows you to connect Uber’s API to any project. In this first release we focus on Uber Direct—the on-demand delivery service for businesses—although its modular design makes it possible to […]

Bruno ·
13 March, 2025

Picture-in-Picture with Hotwire in Ruby on Rails

Let’s imagine we have a simple app called Turbo Video, where users can watch their favorite videos. The app is straightforward — it displays the video’s title, description, and a video player. Something like this: The code for […]

Nico ·
27 February, 2025

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!