module Gem::Text

def min3 a, b, c # :nodoc:

:nodoc:
def min3 a, b, c # :nodoc:
  if a < b && a < c then
    a
  elsif b < c then
    b
  else
    c
  end
end