Open matmorel opened 1 month ago
Hi @matmorel! I'm assuming that your example is more of a generalization rather than your actual code. We noticed that there was this change in Rails 8:
Deprecate drawing routes with multiple paths to make routing faster. You may use with_options or a loop to make drawing multiple paths easier.
# Before
get "/users", "/other_path", to: "users#index"
# After
get "/users", to: "users#index"
get "/other_path", to: "users#index"
That may or may not relate to what you're seeing. Have you been able to get packs-rails
working on this app with a stable version of rails?
Hello, thank you for creating this gem!
I'm trying it with rails 8.0.0.beta1 and it seems that routes defined in the packs aren't available inside it while they are in the main app: