Class: Neetob::CLI::Heroku::ConfigVars::Commands

Inherits:
SubCommandBase
  • Object
show all
Defined in:
lib/neetob/cli/heroku/config_vars/commands.rb

Instance Method Summary collapse

Methods inherited from SubCommandBase

banner, subcommand_prefix

Instance Method Details

#auditObject



27
28
29
# File 'lib/neetob/cli/heroku/config_vars/commands.rb', line 27

def audit
  Audit.new(options[:apps], options[:path], options[:sandbox]).process
end

#listObject



20
21
22
# File 'lib/neetob/cli/heroku/config_vars/commands.rb', line 20

def list
  List.new(options[:apps], options[:keys], options[:path], options[:sandbox]).process
end

#removeObject



42
43
44
# File 'lib/neetob/cli/heroku/config_vars/commands.rb', line 42

def remove
  Remove.new(options[:apps], options[:keys], options[:sandbox]).process
end

#upsertObject



35
36
37
# File 'lib/neetob/cli/heroku/config_vars/commands.rb', line 35

def upsert
  Upsert.new(options[:apps], options[:path], options[:path_with_project_keys], options[:sandbox]).process
end