Reputation: 374
In app/helpers, I have a few ruby files which are just the default module headers/class definitions with no code inside. Is it safe to delete these, or would I need them for any particular reason?
Upvotes: 2
Views: 350
Reputation: 360
While there is no harm to deleting the files--you have nothing inside them--I recommend that you keep the files and try to get used to using them. It's a great way of learning how to manage a sizable project!
Upvotes: 1
Reputation: 2005
The only reason you might want to not prematurely delete them is if they might be used later.
Upvotes: 1
Reputation: 5156
There is no reason to keep these files. You can safely delete all the files that were generated and are just empty placeholders.
Upvotes: 3