include?(val) -> bool
配列が val と == で等しい要素を持つ時に真を返します。
a = [ "a", "b", "c" ] a.include?("b") #=> true a.include?("z") #=> false