Class: Markdo::OverviewCommand

Inherits:
Command
  • Object
show all
Defined in:
lib/markdo/overview_command.rb

Instance Method Summary collapse

Methods inherited from Command

#initialize

Constructor Details

This class inherits a constructor from Markdo::Command

Instance Method Details

#runObject



9
10
11
12
13
14
15
# File 'lib/markdo/overview_command.rb', line 9

def run
  commands = [OverdueCommand, StarCommand, TodayCommand, TomorrowCommand]
  
  commands.each do |command|
    command.new(@stdout, @stderr, @env).run
  end
end