controller_path seems to be used for both cache keys and view paths
The method is as seen below.
https://github.com/trailblazer/trailblazer-cells/blob/master/lib/trailblazer/cell.rb#L34:L37
Currently it is producing duplicate cache keys for different cells as below
# Comment::Cell::Show #=> comment/view/
# Comment::Cell::Summary #=> comment/views/
My expectation is that cache keys should be
# Comment::Cell::Show #=> comment/view/show/
# Comment::Cell::Summary #=> comment/views/summary/
controller_pathseems to be used for both cache keys and view pathsThe method is as seen below.
https://github.com/trailblazer/trailblazer-cells/blob/master/lib/trailblazer/cell.rb#L34:L37
Currently it is producing duplicate cache keys for different cells as below
My expectation is that cache keys should be