Class: SVNx::LogCommand

Inherits:
Command show all
Defined in:
lib/svnx/log/command.rb

Instance Attribute Summary

Attributes inherited from Command

#output

Instance Method Summary collapse

Methods inherited from Command

#execute

Constructor Details

#initialize(args) ⇒ LogCommand

Returns a new instance of LogCommand.



78
79
80
81
# File 'lib/svnx/log/command.rb', line 78

def initialize args
  @use_cache = args.use_cache
  super
end

Instance Method Details

#command_lineObject



83
84
85
# File 'lib/svnx/log/command.rb', line 83

def command_line
  @use_cache ? LogCommandLineCaching.new(@args) : LogCommandLine.new(@args)
end