class HerokuApps

Public Instance Methods

run() click to toggle source
# File lib/renuo/cli/app/heroku_apps.rb, line 4
def run
  JSON.parse(run_command).pluck("name")
end

Private Instance Methods

run_command() click to toggle source
# File lib/renuo/cli/app/heroku_apps.rb, line 10
def run_command
  `heroku apps --json`
end