Skip to content

Instantly share code, notes, and snippets.

@onesup
Created January 23, 2015 03:10
Show Gist options
  • Save onesup/695193ffaef7a955c610 to your computer and use it in GitHub Desktop.
Save onesup/695193ffaef7a955c610 to your computer and use it in GitHub Desktop.
동적 메소드 예제
['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