-
Vitali Tatarintev authored
`gsub(/\/\z/, '')` removes a leading slash (`/`) not a space ``` > 'https://gitlab.com/'.gsub(/\/\z/, '') => "https://gitlab.com" > 'https://gitlab.com/ '.gsub(/\/\z/, '') => "https://gitlab.com/ " ```
c66eabc8
`gsub(/\/\z/, '')` removes a leading slash (`/`) not a space ``` > 'https://gitlab.com/'.gsub(/\/\z/, '') => "https://gitlab.com" > 'https://gitlab.com/ '.gsub(/\/\z/, '') => "https://gitlab.com/ " ```