class Spigoter::CLI::Run

Class for running tasks. @author Daniel Ramos Acosta <danielramosacosta@hotmail.com>

Attributes

task[R]

Public Class Methods

new() click to toggle source
# File lib/spigoter/cli/cli.rb, line 13
def initialize
  @task = {
    'update' => Spigoter::CLI.update,
    'compile' => Spigoter::CLI.compile,
    'start' => Spigoter::CLI.start,
    'init' => Spigoter::CLI.init
  }
end