module Findable::InstanceMethods
Public Instance Methods
find_by_name(name)
click to toggle source
# File lib/ruby_dictionary/findable.rb, line 3 def find_by_name(name) self.all_methods.detect{|m| m.name == name} end