class Dependabot::Source
def default_hostname(provider)
def default_hostname(provider) case provider when "github" then "github.com" when "bitbucket" then "bitbucket.org" when "gitlab" then "gitlab.com" when "azure" then "dev.azure.com" when "codecommit" then "us-east-1" else raise "Unexpected provider '#{provider}'" end end