
Morse Code with Ruby - Part 1 Discussion
1
General
`.. / .-.. --- ...- . / --. --- .-. .- .. .-.. ...`
Cohn Elburn replied

2025 Rails frontend solution: Phlex or ViewComponents?
4
Gems / Libraries
I'm just wondering what everyone's opinions are on the two. I've always leaned into ViewComponents, but it seems like Phlex is on the come up. What has everyone's experience been with the two as of...
Sophia Smith replied

How to test ActionMailer in Rails Discussion
17
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...
Raymond Moss replied

Lazy Requiring Dependencies in Ruby Discussion
8
General
I love removing dependencies. 💖
Also, learning how libraries can make features or dependencies optional is a great thing to learn along the way.

Ruby Module Function Method Discussion
0
General

Inbound SMS in Rails with Twilio Discussion
10
General
Thanks Chris. Ended up using this to programatically send a text message after a user completes an order, and allow that user to ask questions, creating a conversation, where we can respond from th...
Sikuoshi replied

Rails 8.1 Deprecated Associations Discussion
0
General

When pre/eager loading an association, is there any way to get the associated data from a cache?
2
Rails
```
class Category < ActiveRecord::Base
# columns: name
has_many :books
end
class Book < ActiveRecord::Base
# columns: title, category_id
belongs_to :category
end
```
Given the abov...

Struggling with Active Storage delete/purge on uploads
6
Rails
I have a projects model. A project could have many uploads that could be anything (pdf, word, cad, image etc.) I have the uploading working and I am displaying links to the files on the projects/sh...

SMTP not relaying SMS text messages
1
Servers
Heya guys, thanks in advance for any assistance on this. I'm getting a weird behavior that just started happening last month. I have a MS Server 2019 (on premise VM) that is setup as a SMTP relay. ...
Alek Zapatchco replied

How to add Notifications to Rails with Noticed Discussion
36
General
Awesome gem, I had been thinking on how to integrate all types of notification from rails app, from web notification, emails and Push Notifications. I guess Push Notification is just an API call (f...
Alek Yageornba replied

How to add a Command Palette to your Ruby on Rails app Discussion
6
General
Amazing information providing by your article, thank you so much for taking the time to share a wonderful article.
fuitee replied

Senior Ruby Software Engineer - Backend (Fully 100% Remote work from anywhere)
4
Ruby
FairMoney is building the leading mobile bank for emerging markets. FairMoney is unique thanks to its international exposure (with offices on 3 continents) and its impact-driven mission: we bring f...
Emerald Jacobs replied

How To Wrte good bug report for Manual Testing?
1
Testing
A bug report is very easy to write. But what should be the column for bug reports?
alexchambers replied

JavaScript vs TypeScript
3
Javascript
Anyone here who can help me with this?
Priyanka Bhattacharjee replied

Looking for Rails work? / Hiring Rails developers?
52
General
Similar to the Hacker News thread, I thought we might start up a thread for anyone looking to hire a Ruby / Rails freelancer or if you're a freelancer looking for work.
*Please lead with either SE...

Eigenclasses Discussion
9
General
Why does this video say it is private - I have seen it on my iPhone, but its so small, I wanted to see it on a big screen too
Also - I would enjoy a video on Ruby's Hash caching and Rails Lowlevel ...
anna899 replied

Ruby on Rails 3 Tutorial Book Question
4
General
Im following the PDF version of this book and keep having an issue with different versions of gems being compatible. I had to skip the TDD section all together because I couldnt get a compatible ve...
Eddie Collins replied

How To Add Impersonation To Rails Authentication Generator Discussion
10
General
I really love how flexible and easy to customize the new Rails 8 authentication generator is. Think we should cover 2 Factor Auth next?

How to Access Rails Server from Other Devices on the Same Network?
2
Servers
I’m working with a Ruby on Rails application inside a DevContainer, and I’m trying to access the Rails server running on my localhost from other devices on the same private network. I’ve already tr...