Code With Rails

Code With Rails

Follow
Follow
homeRails Tutorials 馃挕Debugging Rails 馃Ruby News 馃煡
Tag

Ruby on Rails

#ruby-on-rails

More content

Read more stories on Hashnode


Articles with this tag

How to create a Ruby on Rails gem from your existing code

Simon ChiuSimon Chiu
Jan 11, 202319 min read

A step-by-step tutorial on how we extract code from our Rails app, package it into a gem, and publish it on RubyGems.org 路 Introduction It is almost...

How to create a Ruby on Rails gem from your existing code

How to fix undefined method address_list in Rails 6.x and 7.x.

Simon ChiuSimon Chiu
Dec 27, 20221 min read

Updating the mail gem breaks Mail#address_list 路 The problem The other day I came across an issue where I saw this error: #...

How to fix undefined method address_list in Rails 6.x and 7.x.

How to use FilePond with Rails' Active Storage

Simon ChiuSimon Chiu
Dec 26, 202214 min read

Learn how to integrate a third-party JavaScript upload library with ActiveStorage 路 FilePond is a beautiful JavaScript library for handling file uploads...

How to use FilePond with Rails' Active Storage

Ruby 3.2 introduces Enumerator::product

Simon ChiuSimon Chiu
Dec 16, 20222 min read

Learn how to use the Enumerator::product method 路 It is that time of the year again when a new version of Ruby is released. Let us take a closer look at...

Ruby 3.2 introduces Enumerator::product

How to use Alpine.js with Rails and Turbo

Simon ChiuSimon Chiu
Dec 13, 202221 min read

For apps not needing Stimulus.js and just using Turbo, the Alpine.js framework offers the right amount of JavaScript to make your apps sparkle. 路...

How to use Alpine.js with Rails and Turbo

A better way to handle user authentication in Rails

Simon ChiuSimon Chiu
Nov 28, 202214 min read

Forget Devise. There's a better way to add user authentication logic with the Authentication Zero gem. 路 For a long time, Devise has been the go-to...

A better way to handle user authentication in Rails