Sha256: 9a1aa84d27d40c16d8f8614847521bb49e0ad34bf3d33649c93a023dca262bf8
Contents?: true
Size: 490 Bytes
Versions: 7
Compression:
Stored size: 490 Bytes
Contents
# frozen_string_literal: true require_relative "connection_info/keyword_value_string" require_relative "connection_info/parse_error" require_relative "connection_info/uri" module PG module AWS_RDS_IAM module ConnectionInfo def self.new(connection_string) if URI.match?(connection_string) URI.new(connection_string) else KeywordValueString.new(connection_string) end end end private_constant :ConnectionInfo end end
Version data entries
7 entries across 7 versions & 1 rubygems