Method: FluentCommandBuilder::TeamFoundation::V100::FolderDiff#login
- Defined in:
- lib/fluent_command_builder/command_builders/team_foundation_100.rb
#login(username, password = nil) {|@b| ... } ⇒ Object
819 820 821 822 823 824 |
# File 'lib/fluent_command_builder/command_builders/team_foundation_100.rb', line 819 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 |