Module: FluentCommandBuilder::TeamFoundationTEE::V100

Defined in:
lib/fluent_command_builder/command_builders/team_foundation_tee_100.rb

Defined Under Namespace

Classes: Add, Branch, Branches, Changeset, Checkin, CheckinShelveset, Checkout, CloakFolder, Compare, CompareWithCurrentWorkspaceVersion, CompareWithShelvesetVersion, CreateWorkspace, DecloakFolder, Delete, DeleteLabel, DeleteShelveset, DeleteWorkspace, Destroy, Dir, EditProfile, Eula, Get, Getcs, Help, History, Label, Labels, Lock, MapFolder, Merge, Merges, ModifyWorkspace, NewProfile, Print, ProductKey, Profiles, Properties, RemoveWorkspace, Rename, ReplaceShelveset, Resolve, Shelve, Shelvesets, ShowLocalFolderMapping, ShowServerFolderMappings, ShowWorkspaceMappings, Status, TeamFoundationTEE, Undelete, Undo, Unlabel, UnmapFolder, Unshelve, Workspaces

Constant Summary collapse

VERSION =
'10.0'
@@config =
CommandBuilderConfig.new FluentCommandBuilder::TeamFoundationTEE::COMMAND_NAME, VERSION

Instance Method Summary collapse

Instance Method Details

#configure_team_foundation_tee {|@@config| ... } ⇒ Object

Yields:

  • (@@config)


12
13
14
15
16
# File 'lib/fluent_command_builder/command_builders/team_foundation_tee_100.rb', line 12

def configure_team_foundation_tee
  yield @@config
  @@config.validate_path
  @@config.validate_version
end

#team_foundation_tee {|b| ... } ⇒ Object

Yields:

  • (b)


17
18
19
20
21
22
# File 'lib/fluent_command_builder/command_builders/team_foundation_tee_100.rb', line 17

def team_foundation_tee
  b = UnderlyingBuilder.new @@config
  c = TeamFoundationTEE.new(b)
  yield b if block_given?
  c
end