Sha256: f3fd7c1e8f6a8e101adbbae956e2fe039d45a02bd69e6c0801f628b0b4495d4b
Contents?: true
Size: 861 Bytes
Versions: 5
Compression:
Stored size: 861 Bytes
Contents
module RightDevelop::CI module Util module_function # Regular expression used to determine which characters of a string are allowed # in Java class names. JAVA_CLASS_NAME = /[A-Za-z0-9_]/ # Make a string suitable for parsing by Jenkins JUnit display plugin by escaping any non-valid # Java class name characters as an XML entity. This prevents Jenkins from interpreting "hi1.2" # as a package-and-class name. # # @param [String] name # @return [String] string with all non-alphanumerics replaced with an equivalent XML hex entity def pseudo_java_class_name(name) result = '' name.each_char do |chr| if chr =~ JAVA_CLASS_NAME result << chr else chr = chr.unpack('U')[0].to_s(16) result << "&#x#{chr};" end end result end end end
Version data entries
5 entries across 5 versions & 1 rubygems