Custom Rails Configuration Options Discussion

2
General
Thanks for this episode, very interesting topic.
Ryan Girton replied

Displaying search results from an API

1
Rails
I am working on a small project where users can search through an API (https://github.com/games-directory/api-giantbomb) via a search bar. However, nothing is displaying on my index page with the r...
Charles Barrett replied

How to use HTML Button Form Attributes Discussion

6
General
This would have saved me a ton of time last year when I spend hours trying to organize the delete button. πŸ€¦β€β™‚οΈ
Charles Barrett replied

Problem with Stimulus and counter_culture gem (counter_cache)

6
Rails
Hy all, i have a problem with the counter_culture gem with my stimulus controller. I have installed the gem and configured all. I have 3 model : Thats working fine for this relation: Category hav...
Undead Corridor replied

Ruby on Rails 3 Tutorial Book Question

3
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...
ScottLDanielson replied

How to use the Browser Guard in Rails Discussion

6
General
If you're building a no build Rails application that makes use of modern browser features (like ONCE Campfire!), you'll definitely want to use this.
Richard Ryan 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...

Syncing Repositories with Ruby Scripts - Part 1 Discussion

7
General
Nice tutorial. Why git fetch followed by git pull and not just a single git pull?

Rails 8.1 Local CI Discussion

3
General
I found the default local CI to be a bit basic. One of my projects is a platform and when we run CI we have to run the test suite multiple times for each implementation of the platform, and we leve...
Richard Ryan replied

How to read EDI (electronic data interchange) Format in rails

2
Rails
Hi Chris, Please help me, How to read edi format in rails. I am trying to do to googling for that solution but I didn't get any best solution If you have any idea about that, How to read and write...

How do I fix Github Action test error caused by "DevToolsActivePort file doesn't exist"?

1
Testing
Hey - I have a Github Action test file as below. When I run the CI, the system tests which use Selenium WebDriver do not pass. The following error occurs: ``` Selenium::WebDriver::Error::UnknownE...

When pre/eager loading an association, is there any way to get the associated data from a cache?

3
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...
xiwog82932 replied

Eigenclasses Discussion

10
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 ...
Robin Madsen replied

Thread Safety with Mutexes in Ruby Discussion

6
General
In a Rails application that does standard CRUD for the most part, what would be a good use case for something like this? In the ferrum_pdf example you gave, it looks like you want to ensure there's...
evelynnotting replied

Deploying Rails 8 with Hatchbox Discussion

4
General
Awesome video Collin, and thanks for the shoutout! πŸ‘πŸ»πŸ™πŸΌπŸ˜Ž
Dale Holmes replied

Hash Fetch with Default Value Discussion

5
General
Guarantee you I've made this mistake many times over the years. πŸ˜…
Enim Korche replied

Single Table Inheritance (STI) with ActiveRecord in Rails Discussion

8
General
Thanks Chris, It's funny that we just stopped using this design pattern at Gitlab https://docs.gitlab.com/ee/development/database/single_table_inheritance.html
Dale Holmes replied

LearnHotwire Course - stuck with Could not find table 'solid_queue_processes'

3
Rails
Hi all, I bought the Learn Hotwire course and stuck at the Rails Application Introduction (3rd video). When I ran "rails s" at 1.29 minute of the video, I got this error 'ActiveRecord::Connectio...

How to use the Ruby 2.6 Just-in-Time (JIT) Compiler Discussion

6
General
Nice!
Eddie Collins replied

Find By Short Code Discussion

1
General
Doesn't this still use the `set_link` code path at the end of the episode? We should be getting rid of that and adding ``` @link = Link.find(params[:id]) ``` under the `show` method?
poorbunnyio replied