Class: Neetob::CLI::NeetoDeploy::ConfigVars::Commands
Instance Method Summary
collapse
banner, subcommand_prefix
Instance Method Details
#list ⇒ Object
23
24
25
|
# File 'lib/neetob/cli/neeto_deploy/config_vars/commands.rb', line 23
def list
List.new(options[:apps], options[:sandbox]).run
end
|
#remove ⇒ Object
38
39
40
|
# File 'lib/neetob/cli/neeto_deploy/config_vars/commands.rb', line 38
def remove
Remove.new(options[:apps], options[:keys], options[:sandbox]).run
end
|
#upsert ⇒ Object
31
32
33
|
# File 'lib/neetob/cli/neeto_deploy/config_vars/commands.rb', line 31
def upsert
Upsert.new(options[:apps], options[:path], options[:path_with_project_keys], options[:sandbox]).run
end
|