
How to use Mission Control Jobs in Rails Discussion
7
General
Super excited to see Mission Control out in the wild. It's a dashboard for ActiveJob that works across queue adapters. What's nice is that in the long term you can swap out backends but still have ...
Jonathan Nguyen replied

How to use HTML Button Form Attributes Discussion
7
General
This would have saved me a ton of time last year when I spend hours trying to organize the delete button. π€¦ββοΈ
Jonathan Nguyen replied

Concept Application: Assert Difference Deep Dive Discussion
0
General
@geometry dash: is this episode that you're looking for? I found it :)
Flueke Arehana posted

Your First Ruby Gem Discussion
6
General
Thanks Collin
I've authored a few gems already, but this was a really useful look at the "bare-bones" approach rather than use the "bundle gem your-name-here # and fill in the blanks" approach.
...
Flueke Arehana replied

Authentication Generator Test Helpers Discussion
0
General

How to test ActionMailer in Rails Discussion
10
General
Great episode, Chris. I like how you said you don't really need to test CSS styling but instead focus on testing the higher level functionality of your mailers. That way, a developer doesn't go dow...
Brian Woods replied

How to use Enumerable with Ruby Classes Discussion
0
General
Ever struggled iterating custom Ruby objects? I sure have! I found including Enumerable and defining an each method for my class to be a game changer. For instance, my Playlist class now effortless...

How to translate and localize apps with Rails Internationalization (18n) Discussion
19
General
This was really great, thank you! Can you provide a link as to what you need to sanitize the variable you passed in, name? Looking forward to the next episode!

How to use Dev Containers with Rails Discussion
21
General
Pretty excited about this because it makes Rails development so much easier to start for beginners or for teams using various operating systems.
I also forgot to mention, there is a `devcontainer`...
Jonathan Nguyen replied

Is there an RSS feed, newsletter, mastodon feed, etc. that notifies when new things come out?
5
Site Feedback
The twitter feed doesn't appear to have been updated in a while. The blog has an RSS feed, but it doesn't seem to include when new episodes come out. For me just having RSS at the "Lessons" route w...
Jonathan Nguyen replied

Passenger vs Puma
6
Servers
I notice that there seems to be a preference for Passenger over Puma in your screencasts and hatchbox.io. Can you elaborate? I was curious about HTTP/2, multithreading, performance, etc.
Jonathan Nguyen replied
Solved

Why to purchase the stripe course or Showing Off Game Nanny
2
Showcase
tldr; No question here, just a show case.
I recently purchased [Chris' Stripe course](https://courses.gorails.com/payments-with-stripe-and-rails-master-class) and used it as a baseline for the eco...
lawrencecaroll replied

Ruby Official Documentation Link Not Working
0
Ruby
https://ruby-doc.com/docs/ProgrammingRuby/html/index.html
- Can someone check why this is not working?
RoR Bacancy posted

CanCanCan: Defining Abilities
1
General
I'm using the CanCanCan gem. According to the documentation you can define abilities. That is working for me. What I want to do is to limit the access to records, that contain a value. Something li...
Susan Cosentino replied

Is there a beginners course?
7
Rails
Hi I've searched but I cant find a beginners to rails course, am I being blind? Thanks

Dubugging
4
Rails
Is there a method to debug hosted ruby on rails application and check the request and response object

How do I connect StimulusJS controller to ActiveAdmin resource
1
Rails
Hi Everyone, I've recently moved on rails 7 and new to stimulus as well. for some reason when i connect my stimulus controller to normal index.html.erb file (or any other file outside activeadmin) ...
Ajit Dhanje replied

Sprockets::FileNotFound in Users::Sessions#new
5
Rails
Thank you for allowing me to be part of your group and my problem is the following, I currently have version 2.7.0 of ruby ββon my computer, version 5.1.7 of rails, they just shared a project that ...
Gilbert Wise replied
Solved

How to add Lazy Load Hooks to Rails Plugins Discussion
1
General
Have you used lazy load hooks to extend a gem with some interesting features?

Sending Webhooks with Exponential Backoff Discussion
6
General
Hi,
love the episode!
Just a tiny remark; when running this code;
```
def send_create_webhook!
User.has_webhook_enabled.find_each do |user|
SendWebhookJob.perform_later(user.webhook_...