Module: FluentCommandBuilder::TeamFoundation::V100
- Defined in:
- lib/fluent_command_builder/command_builders/team_foundation_100.rb
Defined Under Namespace
Classes: Add, AddProxyRecord, Branch, Branches, Changeset, Checkin, CheckinShelveset, Checkout, CloakFolder, Compare, CompareWithCurrentWorkspaceVersion, CompareWithShelvesetVersion, Configure, ConfigureProxy, CreateWorkspace, DecloakFolder, Delete, DeleteLabel, DeleteProxyRecord, DeleteShelveset, DeleteWorkspace, Destroy, Dir, FolderDiff, Get, History, Label, Labels, ListProxyRecords, LocalVersions, Lock, MapFolder, Merge, Merges, ModifyWorkspace, Permission, Properties, RemoveWorkspace, Rename, ReplaceShelveset, Resolve, RollbackChangeset, RollbackToVersion, Shelve, Shelvesets, ShowLocalFolderMapping, ShowServerFolderMappings, ShowWorkspaceMappings, Status, TeamFoundation, Undelete, Undo, Unlabel, UnmapFolder, Unshelve, View, Workspaces
Constant Summary
collapse
- VERSION =
'10.0'
- @@config =
CommandBuilderConfig.new FluentCommandBuilder::TeamFoundation::COMMAND_NAME, VERSION
Instance Method Summary
collapse
Instance Method Details
12
13
14
15
16
|
# File 'lib/fluent_command_builder/command_builders/team_foundation_100.rb', line 12
def configure_team_foundation
yield @@config
@@config.validate_path
@@config.validate_version
end
|
#team_foundation {|b| ... } ⇒ Object
17
18
19
20
21
22
|
# File 'lib/fluent_command_builder/command_builders/team_foundation_100.rb', line 17
def team_foundation
b = UnderlyingBuilder.new @@config
c = TeamFoundation.new(b)
yield b if block_given?
c
end
|