Class: TempestTime::Commands::Teams
- Inherits:
-
Thor
- Object
- Thor
- TempestTime::Commands::Teams
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
#add ⇒ Object
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
|
#delete ⇒ Object
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
|
#edit ⇒ Object
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
|