Class: Mysigner::CredentialResolver::AndroidKeystoreCreds
- Inherits:
-
Struct
- Object
- Struct
- Mysigner::CredentialResolver::AndroidKeystoreCreds
- Defined in:
- lib/mysigner/credential_resolver.rb
Overview
mysigner-22 Phase 7 — Android signing keystore credentials. ‘keystore_path` is always an on-disk path (the Gradle signing pipeline expects a file, not bytes). `tmpfile` is held so the Tempfile object isn’t GC’d before the process exits — when the resolver materializes a Keychain-stored .jks blob to disk, we keep the Tempfile reference here so the file survives until the CLI process ends.
Instance Attribute Summary collapse
-
#key_alias ⇒ Object
Returns the value of attribute key_alias.
-
#key_password ⇒ Object
Returns the value of attribute key_password.
-
#keystore_password ⇒ Object
Returns the value of attribute keystore_password.
-
#keystore_path ⇒ Object
Returns the value of attribute keystore_path.
-
#source ⇒ Object
Returns the value of attribute source.
-
#tmpfile ⇒ Object
Returns the value of attribute tmpfile.
Instance Attribute Details
#key_alias ⇒ Object
Returns the value of attribute key_alias
35 36 37 |
# File 'lib/mysigner/credential_resolver.rb', line 35 def key_alias @key_alias end |
#key_password ⇒ Object
Returns the value of attribute key_password
35 36 37 |
# File 'lib/mysigner/credential_resolver.rb', line 35 def key_password @key_password end |
#keystore_password ⇒ Object
Returns the value of attribute keystore_password
35 36 37 |
# File 'lib/mysigner/credential_resolver.rb', line 35 def keystore_password @keystore_password end |
#keystore_path ⇒ Object
Returns the value of attribute keystore_path
35 36 37 |
# File 'lib/mysigner/credential_resolver.rb', line 35 def keystore_path @keystore_path end |
#source ⇒ Object
Returns the value of attribute source
35 36 37 |
# File 'lib/mysigner/credential_resolver.rb', line 35 def source @source end |
#tmpfile ⇒ Object
Returns the value of attribute tmpfile
35 36 37 |
# File 'lib/mysigner/credential_resolver.rb', line 35 def tmpfile @tmpfile end |