Skip to content

Instantly share code, notes, and snippets.

@itspriddle
Created April 19, 2012 21:45
Show Gist options
  • Save itspriddle/2424419 to your computer and use it in GitHub Desktop.
Save itspriddle/2424419 to your computer and use it in GitHub Desktop.
class Foo; class Bar; class Baz; end; end; end
"Foo::Bar::Baz".split('::').inject(Kernel) { |out, str| out.const_get(str) }
#=> Foo::Bar::Baz
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment