Class: NeetoDeploy::CLI::Env::Commands

Inherits:
Thor
  • Object
show all
Defined in:
lib/neeto_deploy/cli/env/commands.rb

Instance Method Summary collapse

Instance Method Details

#listObject



16
17
18
# File 'lib/neeto_deploy/cli/env/commands.rb', line 16

def list
  List.new(options:).run
end

#set(*environment_variables) ⇒ Object



22
23
24
# File 'lib/neeto_deploy/cli/env/commands.rb', line 22

def set(*environment_variables)
  Set.new(environment_variables, options:).run
end

#unset(*environment_variables) ⇒ Object



28
29
30
# File 'lib/neeto_deploy/cli/env/commands.rb', line 28

def unset(*environment_variables)
  Unset.new(environment_variables, options:).run
end