Class: Neetob::CLI::Heroku::Base

Inherits:
Base
  • Object
show all
Defined in:
lib/neetob/cli/heroku/base.rb

Constant Summary collapse

NEETO_DEPLOY_DOCS =
"https://github.com/bigbinary/neetob/#working-with-neetodeploy"

Constants inherited from Base

Base::NEETO_APPS_LIST_LINK

Instance Attribute Summary

Attributes inherited from Base

#ui

Instance Method Summary collapse

Methods included from Utils

#camel_case_to_slug, #is_upper?, #symbolize_keys

Constructor Details

#initializeBase

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