Kasper Timm Hansen
Kasper Timm Hansen
Hey thank you for using Oaken! From the error it sounds like you've got a missing file — and Oaken isn't involved in any of those calls. Can you double-check...
@ahmgeek hey, sorry for being out of the loop, did you have a chance to dig deeper? > This is why I think maybe Oaken doesn't play nice with ActiveStorage....
Finally got around to reproduce this. If I add Active Storage to Oaken, I'm not experiencing this issue. Here the avatar gets attached just fine: ```diff diff --git a/test/dummy/app/models/user.rb b/test/dummy/app/models/user.rb...
An out-of-the-box alternative could be recommending using a concern like this: ```ruby class Post::Publisher < ActiveRecord::AssociatedObject include ::Publisher end class Comment::Publisher < ActiveRecord::AssociatedObject include ::Publisher end # app/models/concerns/publisher.rb module Publisher...
@garrettdimon yeah, I like the way you put this. I also wonder how often people would need to inject an `extension` block in the shared concern, since it hooks into...
We ended up deciding this wasn't worth it and code sharing may be better handled in concerns for now.
Technically, minitest doesn't support running tests by line number, but it does support filtering tests on name: ``` -n, --name PATTERN Filter run on /regexp/ or string. -e, --exclude PATTERN...
minitest's rationale for test name based filtering is that the name is less likely to change versus the line number. That's not always the case though, and sometimes line number...
@marcoroth heyo, anything I can do to help on this?