analizes SVN SCM to find recently changed files, and what lines have been altered
# File lib/churn/scm/svn_analyzer.rb, line 6 def self.supported? File.exist?(".svn") end
# File lib/churn/scm/svn_analyzer.rb, line 10 def get_logs %xsvn log --verbose#{date_range}#{svn_credentials}`.split(/\n/).map { |line| clean_up_svn_line(line) }.compact end
below 2 methods aren’t supported by SVN so they become noops
# File lib/churn/scm/svn_analyzer.rb, line 15 def get_revisions [] end
# File lib/churn/scm/svn_analyzer.rb, line 19 def get_updated_files_change_info(revision, revisions) {} end