# File lib/chef/provider/package/yum.rb, line 76 def isalpha(x) v = x.ord (v >= 65 and v <= 90) or (v >= 97 and v <= 122) end