class HerokuCLI::Application

Attributes

name[R]

Public Class Methods

new(name) click to toggle source
# File lib/heroku_cli/application.rb, line 5
def initialize(name)
  @name = name
end

Public Instance Methods

addons() click to toggle source

tools and services for developing, extending, and operating your app

# File lib/heroku_cli/application.rb, line 10
def addons
  []
end
features() click to toggle source

disables an app feature

# File lib/heroku_cli/application.rb, line 15
def features
  []
end
maintenance() click to toggle source

display the current maintenance status of app

# File lib/heroku_cli/application.rb, line 20
def maintenance
  @maintenance ||= Maintenance.new(self)
end
pg() click to toggle source

manage postgresql databases

# File lib/heroku_cli/application.rb, line 25
def pg
  @pg ||= PG.new(self)
end
ps() click to toggle source
# File lib/heroku_cli/application.rb, line 29
def ps
  @ps ||= ProcessStatus.new(self)
end