Class: SimpleDeployer::Command::Info
- Inherits:
-
CommandsBase
- Object
- CommandsBase
- SimpleDeployer::Command::Info
- Defined in:
- lib/simple_deployer/commands/info.rb
Instance Method Summary collapse
Methods inherited from CommandsBase
Constructor Details
This class inherits a constructor from SimpleDeployer::Command::CommandsBase
Instance Method Details
#main ⇒ Object
5 6 7 8 9 10 11 12 |
# File 'lib/simple_deployer/commands/info.rb', line 5 def main puts "Account info" p "Access_key " + @service.config.access_key p "Secret_key " + @service.config.secret_key p "Aws_access_key " + @service.config.aws_access_key p "Aws_secret_key " + @service.config.aws_secret_key p "Current project id " + (@service.config.project_id || "Undefined") end |