Sha256: 2fdf700b08257e90b79388715e06fb3dbc36b81e7edaee27cf7b18c82e3aa0a5
Contents?: true
Size: 254 Bytes
Versions: 14
Compression:
Stored size: 254 Bytes
Contents
# frozen_string_literal: true module Format # Laxly matches an IP Address , would also pass numbers > 255 though IP_ADDRESS = /^\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}$/.freeze # Laxly matches an HTTP(S) URI HTTP_URI = %r{^https?://\S+$}.freeze end
Version data entries
14 entries across 14 versions & 1 rubygems