module Artifactory::Util

def numeric?(string)

def numeric?(string)
  string.to_i.to_s == string || string.to_f.to_s == string
end