How to unrequire a Ruby module/library
Require
Regular process
The process to require a module/library is by using:
require 'objspace'
"Unrequire"
List all loaded features
Everytime you require a module/library in ruby, this new value is added to the $LOADED_FEATURES array.
In the irb ...
blog.alexandrecalaca.com2 min read