Class: FluentCommandBuilder::TeamFoundationTEE::V101::RemoveWorkspace
- Inherits:
-
CommandBase
- Object
- CommandBase
- FluentCommandBuilder::TeamFoundationTEE::V101::RemoveWorkspace
- Defined in:
- lib/fluent_command_builder/command_builders/team_foundation_tee_101.rb
Instance Method Summary collapse
- #collection(team_project_collection_url) {|@b| ... } ⇒ Object
-
#initialize(underlying_builder, workspace_name) ⇒ RemoveWorkspace
constructor
A new instance of RemoveWorkspace.
Methods inherited from CommandBase
Constructor Details
#initialize(underlying_builder, workspace_name) ⇒ RemoveWorkspace
Returns a new instance of RemoveWorkspace.
1989 1990 1991 1992 |
# File 'lib/fluent_command_builder/command_builders/team_foundation_tee_101.rb', line 1989 def initialize(, workspace_name) super @b.append " workspaces -remove:#{@b.format workspace_name, ','}" end |
Instance Method Details
#collection(team_project_collection_url) {|@b| ... } ⇒ Object
1993 1994 1995 1996 1997 |
# File 'lib/fluent_command_builder/command_builders/team_foundation_tee_101.rb', line 1993 def collection(team_project_collection_url) @b.append " -collection:#{@b.format team_project_collection_url}" yield @b if block_given? self end |