Best Rails error monitoring software ?
I think Sentry (https://sentry.io) is the best tool you can use
It enables asynchronous reporting so errors are logged quickly in a background job.
It filters and groups Rails exceptions intuitiv...

11
General
Do I need the jumpstart gem embedded in my application?
You need to keep it. It manages the configuration. 👍

2
General
Would you like to use Rails to improve someone's mental health?
Thank you all so much for the permission to post. We received two highly qualified developers who have chosen to volunteer their time to this project! Very excited for the progress we'll get to mak...

4
General
How do I create a duplicate with associations included?
hi, it's really helpful. i also have a case like this, its a quotation and invoice.
does the steps, also copy the association or just the id and refer it to the tasks from previous project?
thanks.

9
Rails
Is there a way to validate image uploads to validate dimensions?
If you are using ActiveStorage, check out this gem : https://github.com/igorkasyanchuk/active_storage_validations
You can use square aspect validation on this gem : `validates :avatar, aspect_rati...

2
Rails
Active-storage creating/uploading folder
I would say, don't think of it as folders on S3 or the file server. Use database records to group and organize them in your app. They don't have to exactly mirror the files on disk.

3
Ruby
How do I build a multi step wizard in ruby with StimulusJS
here we go - https://github.com/excid3/tailwindcss-stimulus-components

5
Ruby
Root route bypassing before_action
we have a posts_controller which takes a slug to render the correct page.
posts_controller inherits from application_controller which has a couple of before_actions
routes.rb has the following ...

1
Rails
"NoMethodError: undefined method `deep_symbolize_keys'" when trying to deploy my application

3
Rails
What's a good way for upgrading a server?
And glad it's been so helpful! This is the community I wish I had a long time ago, so that's great to hear!

5
Servers
User model guidance
Hey Stephen!
The way I do it in JumpstartRails.com is we have a single User everyone logs in as and they have multiple Accounts they're associated with.
Each account could have a type of Coach, ...

2
Rails
Why is this image_tag not working?
If I try and put this code:
```
```
into one of my notification layout pages I only get:
```
Can't resolve image into URL: undefined method `to_model' for #
Did you me...

1
Rails
ActionController::Parameters.new.require(:person)
I ended up also disabling wrap_parameters: wrap_parameters format: []
So now I can simply do params.permit(:id, :name, :age).
Not sure if there is a better way.

2
Rails
Nested Parameters returns ActionController::Parameters rather than parameter value
Yep, that's the built-in way. Sounds like your code doing the validation is strict about what type of object it is (a Hash) and that's the part that's not very Ruby-ish.

6
Rails