class Svnx::Diff::Command

Attributes

entries[R]

Public Class Methods

new(cmdopts, cmdlinecls: Svnx::Base::CommandLine) click to toggle source
Calls superclass method Svnx::Base::Command::new
# File lib/svnx/diff/command.rb, line 12
def initialize cmdopts, cmdlinecls: Svnx::Base::CommandLine
  super cmdopts, cmdlinecls: cmdlinecls, caching: true
  if @output
    @entries = Svnx::Diff::Parser.new.parse_all_output @output.dup
  end
end