Very basic and maybe I missed it, but instead of doing something like sign_up for my routes, how can I do sign-up? This is assuming I have these route like this:
get "/sign_up" => "devise/registrations#new"
It doesn’t work for me if I change it to: get "/sign-up".
Try this instead:
Unfortunately ActionDispatch works best with underscores. So you might try compromising by keeping with convention for the
sign_up_pathhelper and using the dash in the URL