You can grab a singleton class with this well-known trick:
x = 'foo’
singletonClass = class << x; self; end
But is it possible to grab an included module’s proxy class? So if I
include module Mod into class String, like:
class String
include Mod
end
can I get the String:Mod proxy class?
Just curious,
Chris