Merge pull request #8705 from issyl0/sorbet-svn-rbi

sorbet: Add a RBI file for `utils/svn.rb` typechecking
This commit is contained in:
Issy Long 2020-09-12 18:04:13 +01:00 committed by GitHub
commit f9dd8ae6f9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,14 @@
# typed: strict
module Utils::Svn
include Kernel
sig { returns(T::Boolean) }
def available?; end
sig { returns(T.nilable(String)) }
def version; end
sig { params(url: String).returns(T::Boolean) }
def remote_exists?(url); end
end