Ruby on Rails
Articles related to Ruby on Rails web development framework.
-
Create a Blog Application with Ruby on Rails 7. Third Part: Implement User Authentication
In Ruby on Rails Sep 6, 2022
In this blog post, we'll continue developing our blog application by implementing user authentication.
The has_secure-password method, in addition to methods for encrypting a password using...
-
Create a Blog Application with Ruby on Rails 7. Second Part: Create a Post Model and a Posts Controller
In Ruby on Rails Sep 5, 2022
In this part, we will generate a Post model and a Posts controller and start implementing the relationship between users and posts.
... -
Create a Blog Application with Ruby on Rails 7. First Part: Create the User Resource
In Ruby on Rails Sep 4, 2022
In this series, we'll create a simple blog application using Ruby on Rails 7. We'll have a Post resource and a User resource. We'll implement authentication for our users. Users will be able to cre...
-
Custom Fonts in Ruby on Rails 7
In Ruby on Rails June 23, 2022
In this post, we will discuss how we can import custom fonts into a Rails 7 application using the asset pipeline. We will use Rails 7.0.3 and Ruby 3.1.2.
... -
Change Database Column Type in Ruby on Rails 7
In Ruby on Rails June 4, 2022
In Ruby on Rails, it's easy to change a column type in your application database. Say we have an online shop, and the prices of the products are integers. But now, we want decimals. How can we achieve...