Method: FluentCommandBuilder::TeamFoundation::V100::Rename#login
- Defined in:
- lib/fluent_command_builder/command_builders/team_foundation_100.rb
#login(username, password = nil) {|@b| ... } ⇒ Object
1401 1402 1403 1404 1405 1406 |
# File 'lib/fluent_command_builder/command_builders/team_foundation_100.rb', line 1401 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 |