Skip to content

Instantly share code, notes, and snippets.

@senny
Created January 10, 2012 20:02
Show Gist options
  • Save senny/1590866 to your computer and use it in GitHub Desktop.
Save senny/1590866 to your computer and use it in GitHub Desktop.
const_missing and Class.new
class ThisWorks
def self.const_missing(*args)
p "yay!"
end
NonExistingConstant
end
this_does_not_work = Class.new do
def self.const_missing(*args)
p "yay!"
end
NonExistingConstant
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment