Monitoring Cron Jobs with Whenever Discussion
1
General
I like this approach. Having cron jobs report their status and logs makes troubleshooting much easier, especially when something silently fails.
Mario Joseph replied
Book Review: Learning Devise For Rails Discussion
4
General
Hi, does it cover rails 4 or rails 3?
How to add a Command Palette to your Ruby on Rails app Discussion
14
General
Amazing information providing by your article, thank you so much for taking the time to share a wonderful article.
Dynamic Single Table Inheritance with Rails Discussion
12
General
This was really fun. I wanted an easy way to introduce helpers to Notifications so by exposing them also as STI models, we could make them easily accessible with separate helper methods for each No...
Custom Turbo Stream Actions Discussion
7
General
Great episode! Is there any convention or recommendation for managing the JS code instead of throwing it all in the `application.js`? Something like `app/javascript/stream_actions/console_log.js`, ...
Format erb files on save?
1
General
I haven't worked with erb in a while, and now I'm getting back to it. I use Vim as my editor (https://github.com/joshukraine/dotfiles), and I also use [coc.nvim](https://github.com/neoclide/coc.nvi...
Setup MacOS 12 Monterey Discussion
30
General
Hello Chris,
Thanks a lot for this guide. I was having a really hard time trying to install homebrew and rails on my MacBook after I installed Monterey. 😃
Finding records using Delegated Types
1
Rails
Hi,
I have a Delegated Types association set up like below and I need to find a particular Collection but the flickr_id is stored in the GalleryItem table. It's failing to return anything. How...
ActionText / Trix Editor
0
Rails
I'm working on upgrading an app from Rails 6.1.x to 7.0.1 with esBuild for JS. I am having trouble getting ActionText, in particular the Trix editor toolbar, to work correctly when running in `prod...
Honest opinion needed
2
Rails
Hi guys, I'd love to learn more on ROR and it appears this is a really comprehensive site, but a lot of the content seems rather dated.
I want an honest opinion on whether a subscription to this s...
Hotwire and iframes?
2
Rails
Hey everyone! I am working on a page builder. So the preview is in an iframe.
I am trying to make it so when I click the edit icon on a section in the iframe it displays that form in a sidebar in ...
Using Parallel gem to achieve parallel processing in Ruby for increasing performance and making Rails Application faster.
4
Ruby
Hi everyone, I'm trying to decrease API latency in our largely synchronous Ruby on Rails backend. While we use Sidekiq/Shoryuken for background jobs, the bottleneck is within the request-response c...
Pundit scopes
2
General
Hi, i have no idea how to choose best way. There are three models User, Department and Task. Each user assigned to one department (belongs to). Department has many tasks. How to write a policy or s...
Solved
Integrations an Embedded iPaas
1
Gems / Libraries
I want to reach out and see if anyone has any recommendations for an embedded iPaaS. How have you implemented integrations in your app?
We've been looking at make.com, tray.io, and embedded Zapie...
Phyllis R. Bosley replied
Invoker Commands and View Transitions Discussion
2
General
Thanks Collin, this covers some modern browser stuff I didn't know existed before. I guess I was just stuck using the extra JS-Tools I knew and never wondered what browsers can do out of the box no...
Matthias replied
What are the biggest challenges during an AWS cloud migration?
0
General
We're planning a cloud migration project and evaluating different AWS Cloud Migration Services. For those who have completed a migration, what were the biggest challenges you faced? How did you han...
John Carterjn posted
Improving app:update command for Rails 7.2 Discussion
2
General
Using Rails main, betas, or release candidates are great ways to find bugs and contribute to Rails itself. 🎉
Ricky Garrison replied
Extending Rails Associations with Custom Features Discussion
3
General
Great video! I see the point in the first example where just the User needs to know about the client projects, but if you're creating a module and extending it through different classes, why not ju...
Huan Marry replied
Rails 7.1 Authentication From Scratch Discussion
19
General
Authentication got a TON of great improvements in Rails 7.1 with `authenticate_by`, `generates_token_for`, `normalizes`, etc. Super duper excited for these things and they should clean up a lot of ...
Chris Oliver replied
Lazy Requiring Dependencies in Ruby Discussion
9
General
I love removing dependencies. 💖
Also, learning how libraries can make features or dependencies optional is a great thing to learn along the way.