Method: FluentCommandBuilder::TeamFoundation::V100::FolderDiff#initialize
- Defined in:
- lib/fluent_command_builder/command_builders/team_foundation_100.rb
#initialize(underlying_builder, target_path, source_path = nil) ⇒ FolderDiff
Returns a new instance of FolderDiff.
788 789 790 791 792 793 |
# File 'lib/fluent_command_builder/command_builders/team_foundation_100.rb', line 788 def initialize(, target_path, source_path=nil) super @b.append ' folderDiff' @b.append " #{@b.format source_path}" unless source_path.nil? @b.append " #{@b.format target_path}" end |