Class: TM::Commands::SingleTask

Inherits:
Command
  • Object
show all
Defined in:
lib/tm/commands/single_task.rb

Instance Method Summary collapse

Methods inherited from Command

#initialize

Constructor Details

This class inherits a constructor from TM::Commands::Command

Instance Method Details

#execute(search_attrs = '') ⇒ Object



4
5
6
7
8
9
10
# File 'lib/tm/commands/single_task.rb', line 4

def execute(search_attrs = '') 
  project = @provider_handler.taskmapper.project(@attributes)
  ticket = project.tickets(search_attrs.extend(TM::StringExtensions).to_hash).first
  @formatter.before(ticket)
  @formatter.format(ticket)
  @formatter.after
end