Method: U3dCore::Credentials#remember_credentials
- Defined in:
- lib/u3d_core/credentials.rb
#remember_credentials ⇒ Object
91 92 93 94 95 96 97 98 99 100 |
# File 'lib/u3d_core/credentials.rb', line 91 def remember_credentials ENV['U3D_USER'] = @user ENV['U3D_PASSWORD'] = @password if Helper.mac? && @use_keychain UI. 'Storing credentials to the keychain' return Security::InternetPassword.add(server_name, user, password) end return false end |