class Module


exposed in the first place.
“feature” of Ruby prevents late includes into modules from being
included into Kernel would have to be removed as well, but a
instance methods removed from blank slate. In theory, modules
Also, modules included into Object need to be scanned and have their
#####################################################################

def append_features(mod)

def append_features(mod)
  result = blankslate_original_append_features(mod)
  return result if mod != Object
  instance_methods.each do |name|
    BlankSlate.hide(name)
  end
  result
end