Class: Casper::Entity::DeployApproval
- Inherits:
-
Object
- Object
- Casper::Entity::DeployApproval
- Defined in:
- lib/entity/deploy_approval.rb
Instance Method Summary collapse
-
#get_signature ⇒ Object
return [String] signature.
-
#get_signer ⇒ String
Signer.
-
#initialize(signer, signature) ⇒ DeployApproval
constructor
A new instance of DeployApproval.
Constructor Details
#initialize(signer, signature) ⇒ DeployApproval
Returns a new instance of DeployApproval.
7 8 9 10 |
# File 'lib/entity/deploy_approval.rb', line 7 def initialize(signer, signature) @signer = signer @signature = signature end |
Instance Method Details
#get_signature ⇒ Object
return [String] signature
18 19 20 |
# File 'lib/entity/deploy_approval.rb', line 18 def get_signature @signature end |
#get_signer ⇒ String
Returns signer.
13 14 15 |
# File 'lib/entity/deploy_approval.rb', line 13 def get_signer @signer end |