mirror of
https://github.com/discourse/discourse.git
synced 2024-11-22 15:25:35 +08:00
21 lines
382 B
Ruby
21 lines
382 B
Ruby
# frozen_string_literal: true
|
|
|
|
module GitUrl
|
|
class << self
|
|
SSH_REGEXP = /(\w+@(\w+\.)*\w+):(.*)/
|
|
|
|
def normalize(url)
|
|
if m = SSH_REGEXP.match(url)
|
|
url = "ssh://#{m[1]}/#{m[3]}"
|
|
end
|
|
|
|
if url.start_with?("https://github.com/") && !url.end_with?(".git")
|
|
url = url.gsub(%r{/\z}, "")
|
|
url += ".git"
|
|
end
|
|
|
|
url
|
|
end
|
|
end
|
|
end
|