lib/haveapi/cli/authentication/basic.rb in haveapi-client-0.20.0 vs lib/haveapi/cli/authentication/basic.rb in haveapi-client-0.21.0
- old
+ new
@@ -19,12 +19,14 @@
@password ||= ask('Password: ') do |q|
q.default = nil
q.echo = false
end.to_s
+
+ nil
end
def authenticate
- @communicator.authenticate(:basic, {user: @user, password: @password})
+ @communicator.authenticate(:basic, { user: @user, password: @password })
end
end
end