Remove Nested module constant in ruby
You might have seen this solution.
Object.send(:remove_const, :ExampleClass)
But what if you want to remove namespaced classes in Ruby. You can use the same method, but instead of Object use the parent module where your class is nested.
module App
...
tenzinchemi.in1 min read