Ruby on Rails
Articles related to Ruby on Rails web development framework.
-
Replace Confirm Dialog Box with Sweet Alert in Ruby on Rails 6
In Ruby on Rails Dec 2, 2021
In this post, we will discuss how we can integrate the Sweet Alert 2 library into a Rails 6 application. W... -
Nested Resources in Ruby on Rails. Let's Build a Dictionary!
In Ruby on Rails Nov 20, 2021
In this tutorial, we will deal with nested resources in Ruby on Rails. This is useful when there is a has_many association corresponding to a belongs_to association between two models. We want to e...
-
Uploading Images in Rails 6 Using Active Storage, Trix and Cloudinary
In Ruby on Rails Nov 4, 2021
Active Storage is a Rails module used to upload files to a cloud service. Cloudinary is such a service and, in addition, a complex platform that enables developers to store, transform, optimize, and d... -
"Hello World" Application using Ruby on Rails 6
In Ruby on Rails Oct 24, 2021
This article is a brief introduction to web application development in general and, in particular, to Ruby on Rails. We will create a simple application that will display the text “Hello, World!” ...
-
Using JavaScript in Ruby on Rails. Let's Build a To-Do App!
In Ruby on Rails August 27, 2021
Rails has a lot of built-in helpers that simplify the process of adding Ajax/JavaScript functionality to our applications. Rails uses an unobtrusive scripting adapter (UJS) that provides helpers to...