Class: FluentCommandBuilder::TeamFoundation::V100::Permission
- Inherits:
-
CommandBase
- Object
- CommandBase
- FluentCommandBuilder::TeamFoundation::V100::Permission
show all
- Defined in:
- lib/fluent_command_builder/command_builders/team_foundation_100.rb
Instance Method Summary
collapse
Methods inherited from CommandBase
#configure!, #execute!, #to_s
Constructor Details
#initialize(underlying_builder, item_spec) ⇒ Permission
Returns a new instance of Permission.
1215
1216
1217
1218
|
# File 'lib/fluent_command_builder/command_builders/team_foundation_100.rb', line 1215
def initialize(underlying_builder, item_spec)
super underlying_builder
@b.append " permission #{@b.format item_spec}"
end
|
Instance Method Details
#allow(permission) {|@b| ... } ⇒ Object
1219
1220
1221
1222
1223
|
# File 'lib/fluent_command_builder/command_builders/team_foundation_100.rb', line 1219
def allow(permission)
@b.append " /allow:#{@b.format permission, ','}"
yield @b if block_given?
self
end
|
#collection(team_project_collection_url) {|@b| ... } ⇒ Object
1249
1250
1251
1252
1253
|
# File 'lib/fluent_command_builder/command_builders/team_foundation_100.rb', line 1249
def collection(team_project_collection_url)
@b.append " /collection:#{@b.format team_project_collection_url}"
yield @b if block_given?
self
end
|
#deny(permission) {|@b| ... } ⇒ Object
1224
1225
1226
1227
1228
|
# File 'lib/fluent_command_builder/command_builders/team_foundation_100.rb', line 1224
def deny(permission)
@b.append " /deny:#{@b.format permission, ','}"
yield @b if block_given?
self
end
|
#global {|@b| ... } ⇒ Object
1259
1260
1261
1262
1263
|
# File 'lib/fluent_command_builder/command_builders/team_foundation_100.rb', line 1259
def global
@b.append ' /global'
yield @b if block_given?
self
end
|
#group(group_name) {|@b| ... } ⇒ Object
1244
1245
1246
1247
1248
|
# File 'lib/fluent_command_builder/command_builders/team_foundation_100.rb', line 1244
def group(group_name)
@b.append " /group:#{@b.format group_name, ','}"
yield @b if block_given?
self
end
|
#inherit(inherit) {|@b| ... } ⇒ Object
1234
1235
1236
1237
1238
|
# File 'lib/fluent_command_builder/command_builders/team_foundation_100.rb', line 1234
def inherit(inherit)
@b.append " /inherit:#{@b.format inherit}"
yield @b if block_given?
self
end
|
#login(username, password = nil) {|@b| ... } ⇒ Object
1264
1265
1266
1267
1268
1269
|
# File 'lib/fluent_command_builder/command_builders/team_foundation_100.rb', line 1264
def login(username, password=nil)
@b.append " /login:#{@b.format username}"
@b.append ",#{@b.format_password password}" unless password.nil?
yield @b if block_given?
self
end
|
#recursive {|@b| ... } ⇒ Object
1254
1255
1256
1257
1258
|
# File 'lib/fluent_command_builder/command_builders/team_foundation_100.rb', line 1254
def recursive
@b.append ' /recursive'
yield @b if block_given?
self
end
|
#remove(permission) {|@b| ... } ⇒ Object
1229
1230
1231
1232
1233
|
# File 'lib/fluent_command_builder/command_builders/team_foundation_100.rb', line 1229
def remove(permission)
@b.append " /remove:#{@b.format permission, ','}"
yield @b if block_given?
self
end
|
#user(user_name) {|@b| ... } ⇒ Object
1239
1240
1241
1242
1243
|
# File 'lib/fluent_command_builder/command_builders/team_foundation_100.rb', line 1239
def user(user_name)
@b.append " /user:#{@b.format user_name, ','}"
yield @b if block_given?
self
end
|