Sha256: 67768a0ab9c43a4dd9c669e6780ef91796e66d7e27be951d7db759cecc79ef17

Contents?: true

Size: 245 Bytes

Versions: 1

Compression:

Stored size: 245 Bytes

Contents

require 'taskwarrior-web/config'

module TaskwarriorWeb
  module Runner

    TASK_BIN = 'task'

    def run
      @built ||= build
      to_run = "#{TASK_BIN} #{@built}"
      puts "Final command: #{to_run}"
      `#{to_run}`
    end

  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
taskwarrior-web-1.0.0 lib/taskwarrior-web/runner.rb