Class: TempestTime::Commands::Teams

Inherits:
Thor
  • Object
show all
Defined in:
lib/tempest_time/commands/teams.rb,
lib/tempest_time/commands/teams/add.rb,
lib/tempest_time/commands/teams/edit.rb,
lib/tempest_time/commands/teams/delete.rb

Defined Under Namespace

Classes: Add, Delete, Edit

Instance Method Summary collapse

Instance Method Details

#addObject



11
12
13
14
# File 'lib/tempest_time/commands/teams.rb', line 11

def add(*)
  require_relative 'teams/add'
  TempestTime::Commands::Teams::Add.new(options).execute
end

#deleteObject



23
24
25
26
# File 'lib/tempest_time/commands/teams.rb', line 23

def delete(*)
  require_relative 'teams/delete'
  TempestTime::Commands::Teams::Delete.new(options).execute
end

#editObject



17
18
19
20
# File 'lib/tempest_time/commands/teams.rb', line 17

def edit(*)
  require_relative 'teams/edit'
  TempestTime::Commands::Teams::Edit.new(options).execute
end