Last active
August 29, 2015 14:01
-
-
Save vinhnglx/a548e54d80195a768e81 to your computer and use it in GitHub Desktop.
An example about method_missing()
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 User | |
attr_accessor :first_name, :last_name, :birthday | |
end | |
# Results | |
# user = User.new | |
# user.middle_name ==> NoMethodError |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment