Class: Markdo::Command

Inherits:
Object
  • Object
show all
Defined in:
lib/markdo/commands/command.rb

Instance Method Summary collapse

Constructor Details

#initialize(command_support) ⇒ Command

Returns a new instance of Command.



7
8
9
10
11
12
13
14
# File 'lib/markdo/commands/command.rb', line 7

def initialize(command_support)
  @command_support = command_support
  @stdin = command_support.stdin
  @stdout = command_support.stdout
  @stderr = command_support.stderr
  @env = command_support.env
  @today = command_support.today
end

Instance Method Details

#runObject



16
17
# File 'lib/markdo/commands/command.rb', line 16

def run
end