1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

[rubygems/rubygems] Simplify host switching logic

This block was a branch and variable heavy way of saying use the
user-provided host if available, or fall-back to the default host if
none of the other options match. IMO the resultant single-if condition
is clearer in intentions

https://github.com/rubygems/rubygems/commit/42dbb71cfa
This commit is contained in:
Thomas McDonald 2019-07-04 15:30:15 +01:00 committed by Hiroshi SHIBATA
parent acb793b71c
commit 12ac0fa939
Notes: git 2020-05-08 14:14:25 +09:00

View file

@ -52,23 +52,14 @@ The push command will use ~/.gem/credentials to authenticate to a server, but yo
gem_name = get_one_gem_name
default_gem_server, push_host = get_hosts_for(gem_name)
default_host = nil
user_defined_host = nil
if @user_defined_host
user_defined_host = options[:host]
else
default_host = options[:host]
end
@host = if user_defined_host
user_defined_host
@host = if @user_defined_host
options[:host]
elsif default_gem_server
default_gem_server
elsif push_host
push_host
else
default_host
options[:host]
end
sign_in @host