Last active
December 14, 2015 19:59
-
-
Save igmarin/5140590 to your computer and use it in GitHub Desktop.
Little example using const_missing, after reading Chap3 of Rebuilding Rails, this is how rails works.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Object | |
def self.const_missing c | |
STDERR.puts "Missing constant: #{c.inspect}" | |
end | |
end | |
class Bobo < Object | |
def hello | |
puts "Hi Bobo!" | |
end | |
end | |
if __FILE__ == $0 | |
Bobo.new.hello | |
Jajaja | |
Meeee | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment