Marco Roth
Marco Roth
Hey @raivil, thanks for reporting this issue! I'm pretty sure this is an issue on stimulus-use's side. I saw you shared a snippet of your code in https://github.com/zurb/tribute/issues/892, but would...
Hey @raivil, yeah I understand. It doesn't need to be everything, but it would be awesome to have a [minimal, reproducible example](https://stackoverflow.com/help/minimal-reproducible-example) so we know we are talking about the...
I just got into my first work-week after RailsConf. I'm trying to take a look this week. Thanks for your patience!
Hey @dark-panda, thanks for opening this issue. I'm not sure if we can also make `useMemo` work for getters, due to the nature how they work. We might be able...
I'll look into this to see what we can do 🤞🏼
I think the current implementation doesn't even work for regular methods, just getters 🤔
Hey @gap777, thanks for opening this issue and for proposing to upstream your `useMapReduce` function! Currently `stimulus-use` is more a collection of behaviour/callbacks-related use-functions. But I really love the idea...
Hey @joelmoss, sorry for the confusion. Yeah, seems like the docs need a small rework. Most of that functionality now lives in the `rails cable_ready:install` command that will guide you...
But maybe it would make sense to still have those generators available to call them independently
Just sharing the approach I took: ```ruby # app/models/backends/multi_file_backend.rb module Backends class MultiFileBackend def initialize(glob, backend: FrozenRecord::Backends::Yaml) @glob = glob @backend = backend end def filename(_model_name = nil) @glob end...