Tagged Questions
1
vote
4answers
1k views
Ruby: How do I invoke a function via an object reference?
Consider this contrived example:
# Dispatch on value of fruit_kind:
TYPE_A = :apple
TYPE_B = :banana
TYPE_C = :cherry
eating_method = nil
case fruit_kind
# Methods to use for different kinds of ...