Class: Neetob::CLI::Heroku::ConfigVars::Commands
Instance Method Summary
collapse
banner, subcommand_prefix
Instance Method Details
#audit ⇒ Object
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
|
#list ⇒ Object
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
|
#remove ⇒ Object
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
|
#upsert ⇒ Object
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
|