Skip to content

Instantly share code, notes, and snippets.

@mwlang
Created August 6, 2015 23:35
Show Gist options
  • Save mwlang/3e69c61efa8d63e9e72d to your computer and use it in GitHub Desktop.
Save mwlang/3e69c61efa8d63e9e72d to your computer and use it in GitHub Desktop.
module Foobar
end
class Foobar::Bar
end
class Foobar::Foo
end
ObjectSpace.each_object do |o|
puts o.class.to_s if o.class.to_s =~ /Foo/
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment