Sha256: 6a89b0a096881e6dab6bc9504ee70335cf26d0984fa7fd8442ac10c537eaccc1
Contents?: true
Size: 324 Bytes
Versions: 32
Compression:
Stored size: 324 Bytes
Contents
module Git class Config attr_writer :binary_path, :git_ssh def initialize @binary_path = nil @git_ssh = nil end def binary_path @binary_path || ENV['GIT_PATH'] && File.join(ENV['GIT_PATH'], 'git') || 'git' end def git_ssh @git_ssh || ENV['GIT_SSH'] end end end
Version data entries
32 entries across 32 versions & 5 rubygems