Design Previews for Ruby on Rails
How to easily design in code and compare designs side by side in Ruby on Rails applications.
Search for a command to run...
Articles tagged with #ruby-on-rails
How to easily design in code and compare designs side by side in Ruby on Rails applications.
I'm trying to improve my design engineering and have been practicing and looking for opportunities to flex and grow. One of my favorite new techniques is View Transitions, a simple way using CSS to animate transitions between states of the view, whet...
In the previous post we built a common UI pattern of a button that reveals a form and on submitting the form, adds the newly created item to a list. We implemented the new playlist functionality using Turbo Frames and just a little bit of Javascript ...

Much like the Drag and Drop Uploader I built, I've been finding that you don't need to use JS plugins to build a lot of common functionality these days. It is easier to just roll your own solution. The DOM API is modern and easy to use. In this serie...

A popular feature in applications is the ability to request a magic link to your account's email address that will log you into the application without a password. I guess it's known as passwordless login or magic links. After adding the reset passwo...

As a continuation of Rails Authentication from Scratch, let's add a password reset feature to our application. Generating the Reset Password Token The general flow of a password reset is as follows: User clicks "Forgot Password" link User enters ema...
