Class: Neetob::CLI::Heroku::Base
- Defined in:
- lib/neetob/cli/heroku/base.rb
Direct Known Subclasses
Access::Add, Access::List, Access::Remove, AutoscalingConfig, ConfigVars::Base, Execute, MaintenanceWindow, Stack
Constant Summary collapse
- NEETO_DEPLOY_DOCS =
"https://github.com/bigbinary/neetob/#working-with-neetodeploy"
Constants inherited from Base
Instance Attribute Summary
Attributes inherited from Base
Instance Method Summary collapse
-
#initialize ⇒ Base
constructor
A new instance of Base.
- #process(*args) ⇒ Object
Methods included from Utils
#camel_case_to_slug, #is_upper?, #symbolize_keys
Constructor Details
#initialize ⇒ Base
Returns a new instance of Base.
11 12 13 14 15 |
# File 'lib/neetob/cli/heroku/base.rb', line 11 def initialize super() @staging_apps = [] end |
Instance Method Details
#process(*args) ⇒ Object
17 18 19 20 21 |
# File 'lib/neetob/cli/heroku/base.rb', line 17 def process(*args) run(*args) show_matching_staging_apps if @staging_apps.present? end |