Class: SvnLog::CommandLine
- Inherits:
-
SVNx::Command
- Object
- SVNx::Command
- SvnLog::CommandLine
- Defined in:
- lib/svnx/log/line.rb
Direct Known Subclasses
Instance Attribute Summary
Attributes inherited from SVNx::Command
Instance Method Summary collapse
- #command_line ⇒ Object
-
#initialize(args) ⇒ CommandLine
constructor
A new instance of CommandLine.
Methods inherited from SVNx::Command
Constructor Details
#initialize(args) ⇒ CommandLine
Returns a new instance of CommandLine.
27 28 29 30 |
# File 'lib/svnx/log/line.rb', line 27 def initialize args @use_cache = args.use_cache super end |
Instance Method Details
#command_line ⇒ Object
32 33 34 35 |
# File 'lib/svnx/log/line.rb', line 32 def command_line cls = @use_cache ? LogCommandLineCaching : LogCommandLine cls.new @args end |