Module: DevFlow

Defined in:
lib/dev_flow/task.rb,
lib/dev_flow.rb,
lib/dev_flow/app.rb,
lib/dev_flow/girc.rb,
lib/dev_flow/member.rb,
lib/dev_flow/roadmap.rb,
lib/dev_flow/task_js.rb,
lib/dev_flow/version.rb,
lib/dev_flow/commands/ur.rb,
lib/dev_flow/task_console.rb,
lib/dev_flow/commands/info.rb,
lib/dev_flow/commands/init.rb,
lib/dev_flow/commands/clean.rb,
lib/dev_flow/commands/close.rb,
lib/dev_flow/commands/gantt.rb,
lib/dev_flow/commands/timer.rb,
lib/dev_flow/commands/complete.rb,
lib/dev_flow/commands/progress.rb

Overview

representations for a task in roadmap and in Gantt chart.

@author: Huang Wei <[email protected]> version 1.0a

Defined Under Namespace

Classes: App, Clean, Close, Complete, Gantt, Girc, Info, Init, Member, Progress, RoadMap, Task, Timer, Ur

Constant Summary collapse

VERSION =
'0.6.2'

Class Method Summary collapse

Class Method Details

.invoke!(config, command) ⇒ Object



23
24
25
26
27
28
# File 'lib/dev_flow.rb', line 23

def self.invoke! config, command
  # autoload command required files
  require "dev_flow/commands/#{command}"
  klass = command.to_s.capitalize
  eval(klass).new(config, command).process!
end