Is there are way to disable warning: already initialized constant when loading particular files?
| |||||||||||||||||
feedback
|
|
The solution to your problem depends on what is causing it. 1 - You are changing the value of a constant that was set before somewhere in your code, or are trying to define a constant with the same name as an existant class or module. Solution: don't use constants if you know in advance that the value of the constant will change; don't define constants with the same name as class/modules. 2 - You are in a situation where you want to redefine a constant for good reasons, without getting warnings. There are two options. First, you could undefine the constant before redefining it (this requires a helper method, because
Or, you could just tell the Ruby interpreter to shut up (this suppresses all warnings):
3 - You are requiring an external library that defines a class/module whose name clashes with a new constant or class/module you are creating. Solution: wrap your code inside a top-level module-namespace to prevent the name clash.
4 - Same as above, but you absolutely need to define a class with the same name as the gem/library's class. Solution: you can assign the library's class name to a variable, and then clear it for your later use:
| ||||
|
feedback
|
|
The accepted answer to this question was helpful. I looked at the Rails source to get the following. Before and after loading the file, I can insert these lines:
| |||
|
feedback
|