Skip to content

Instantly share code, notes, and snippets.

@filiptepper
Created November 21, 2011 13:56
Show Gist options
  • Save filiptepper/1382682 to your computer and use it in GitHub Desktop.
Save filiptepper/1382682 to your computer and use it in GitHub Desktop.
Today I Learned
module Oink
class Doink
end
end
> Kernel.const_get("Oink::Doink")
NameError: wrong constant name Oink::Doink
> Kernel.const_get("Oink").const_get("Doink")
=> Oink::Doink
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment