Class: Travis::CLI::Setup::Anynines
- Defined in:
- lib/travis/cli/setup/anynines.rb
Instance Attribute Summary
Attributes inherited from Service
Instance Method Summary collapse
Methods inherited from Service
description, #initialize, known_as?, #method_missing, normalized_name, service_name
Constructor Details
This class inherits a constructor from Travis::CLI::Setup::Service
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class Travis::CLI::Setup::Service
Instance Method Details
#run ⇒ Object
9 10 11 12 13 14 15 16 |
# File 'lib/travis/cli/setup/anynines.rb', line 9 def run deploy 'anynines' do |config| config['username'] ||= ask("anynines username: ").to_s config['password'] ||= ask("anynines password: ") { |q| q.echo = "*" }.to_s config['organization'] ||= ask("anynines organization: ").to_s config['space'] ||= ask("anynines space: ").to_s end end |