Sha256: 6966e83d8dd14cdf2b46635f2abb69988f6becf2cfebd4b7964be285e1e30825

Contents?: true

Size: 449 Bytes

Versions: 1

Compression:

Stored size: 449 Bytes

Contents

module RunLoop

  # @!visibility private
  module Regex

    # @!visibility private
    CORE_SIMULATOR_UDID_REGEX = /[A-F0-9]{8}-([A-F0-9]{4}-){3}[A-F0-9]{12}/.freeze

    # @!visibility private
    XCODE_511_SIMULATOR_REGEX = /(\d)\.(\d)\.?(\d)?(-64)?/.freeze

    # @!visibility private
    DEVICE_UDID_REGEX = /[a-f0-9]{40}|([A-F0-9]{8}-[A-F0-9]{16})/.freeze

    # @!visibility private
    VERSION_REGEX = /(\d+\.\d+(\.\d+)?)/.freeze

  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
run_loop-4.1.0 lib/run_loop/regex.rb