method

min_by

v1_9_2_180 - Show latest stable - Class: Enumerable
min_by()
public

Returns the object in enum that gives the minimum value from the given block.

If no block is given, an enumerator is returned instead.

a = %w(albatross dog horse)
a.min_by {|x| x.length }   #=> "dog"