Class: Svn::Log::Application::SearchCommand::SvnLogTextPrinter

Inherits:
Object
  • Object
show all
Defined in:
lib/svnlog.rb

Overview

Prints entries in the ‘svn log’ text format

Class Method Summary collapse

Class Method Details



161
162
163
164
165
166
167
# File 'lib/svnlog.rb', line 161

def self.print(entries)
  print_entry_separator
  for entry in entries
    print_entry(entry)
    print_entry_separator
  end
end