3 Commits

Author SHA1 Message Date
Norm MacLennan
20c5d0e34d bump version 2015-11-20 08:55:43 -05:00
Norm MacLennan
b7558d64f5 Merge pull request #17 from ballou88/fix-for-broken-prompt-for-password
Fix for prompt_for_password
2015-11-20 08:54:56 -05:00
Mike Ballou
293abdacde this is a fix for commit 813b171d26 which
broke the prompt_for_password method and resulted a nil password.
2015-11-19 10:55:42 -08:00
2 changed files with 4 additions and 3 deletions

View File

@@ -66,9 +66,10 @@ module Zanzibar
def prompt_for_password
puts "Please enter password for #{@@username}:"
STDIN.noecho(&:gets).chomp
STDIN.noecho(&:gets).chomp.tap do
puts "Using password to login..."
end
end
## Gets the wsdl document location if none is provided in the constructor
# @return [String] the location of the WDSL document

View File

@@ -1,4 +1,4 @@
# The version of the gem
module Zanzibar
VERSION = '0.1.21'
VERSION = '0.1.23'
end