Created
January 23, 2015 03:10
-
-
Save onesup/695193ffaef7a955c610 to your computer and use it in GitHub Desktop.
동적 메소드 예제
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
['ticket_message','ticket_memo'].each do |method| | |
method_name = (method.underscore+"?").to_sym | |
send :define_method, method_name do | |
method.camelize.constantize.is_a? method.camelize.constantize | |
end | |
end | |
#TicketActivity.ticket_message? 와 같은 식으로 활용. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment