In my rails app I have a scaffold clients
that is already linked to many other files in the app.
Is there a way to replace the word 'client
' with 'guest
' everywhere in the app, without doing it manually?
Indeed, a simple find-and-replace did the trick.
But you have to be careful with it and do it in a few steps:
replace client
with guest
replace Client
with guest
(case sensitive)
Careful if the plural form is different (like identity-identities)