module Uberinstaller::Utils

Public Class Methods

letter?(lookAhead) click to toggle source
# File lib/uberinstaller/utils.rb, line 5
def self.letter?(lookAhead)
  lookAhead =~ /[[:alpha:]]/
end
numeric?(lookAhead) click to toggle source
# File lib/uberinstaller/utils.rb, line 9
def self.numeric?(lookAhead)
  lookAhead =~ /[[:digit:]]/
end