
I find YAML
to be a godsend when rendering static data that doesn't necessarily need to be a part of a database using Ruby on Rails.
In the Ruby ecosyst...
1 comment
•201 reads
This collection houses all things Ruby and Rails. We discuss the conventions, principles, patterns, and more that make up the vastly cool web-app framework.
Viewing articles within the Ruby on Rails collection
I find YAML
to be a godsend when rendering static data that doesn't necessarily need to be a part of a database using Ruby on Rails.
In the Ruby ecosyst...
1 comment
•201 reads
Over the past few months, I've been quietly hacking on a side project called Rails UI. It's a new Ruby on Rails engine that pairs prof...
0 comments
•1169 reads
Adding basic search functionality to a Ruby on Rails app is not the toughest task in the book but when you think about it before [hotwire.dev](https://hotwir...
3 comments
•4430 reads
Modern versions of Ruby on Rails ship with a very useful application credentials layer that allows you to store private keys and other information in a fully...
4 comments
•11228 reads
Ruby on Rails ships with no user authentication layer. The core maintainers of the framework made this decision as it could vary per app how you might want t...
3 comments
•2556 reads
When Rails 7 made its first appearance in December of 2021 a new default component was introduced called Turbo. If you have an...
0 comments
•10141 reads
Upgrading a Ruby on Rails application can be a downright chore. There are many steps to consider and that varies depending on your version of Rails. It's oft...
0 comments
•1942 reads
Ruby on Rail's ships with a module known as Enum
which has a parent class of ActiveRecord
...
0 comments
•6007 reads
Accepting payments has become easier than ever. Stripe is a platform that enables so many entrepreneurs to branch out and make their way to building products...
2 comments
•2386 reads
Ruby on Rails and its routing capabilities make creating new resources and URL structures a breeze. This guide is a walk-through of some use cases for routin...
0 comments
•3678 reads
As I took a quick break from my other series ([Let's Build for Ruby on Rails developers](https://web-crunch.com/collections/lets-build-for-ruby-and-rails-dev...
3 comments
•3135 reads
Scopes are used to assign complex ActiveRecord queries into customized methods using Ruby on Rails.
Inside your models, you can define a scope as a new me...
4 comments
•8331 reads