Is there a more concise way of structuring the following if statement?
if self.itemsize.downcase.include? "a3" or
self.itemsize.downcase.include? "a4" or
self.itemsize.downcase.include? "a5" or
self.itemsize.downcase.include? "dl"
puts "yadda yadda"
end
Perhaps with an array? eg if self.itemsize.downcase.include? ["a3", "a4", "a5", "dl"]
String#includedoesn't work with an array argument. – Michael Kohl Aug 1 '11 at 14:06