Sha256: 75c15c510c198a8c893b5622980b4fe3fcaa40a19c6f676de0d15eed843e444d
Contents?: true
Size: 309 Bytes
Versions: 3
Compression:
Stored size: 309 Bytes
Contents
module OhlohScm::Adapters class GitSvnAdapter < AbstractAdapter def git_svn_log(cmd:, oneline:) oneline_flag = '--oneline' if oneline run("#{git_svn_log_cmd} #{oneline_flag} #{cmd}").strip end private def git_svn_log_cmd "cd #{self.url} && git svn log" end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
ohloh_scm-2.4.3 | lib/ohloh_scm/adapters/git_svn/misc.rb |
ohloh_scm-2.4.1 | lib/ohloh_scm/adapters/git_svn/misc.rb |
ohloh_scm-2.4.0 | lib/ohloh_scm/adapters/git_svn/misc.rb |