Method: BurdenWeb::TasksController#index
- Defined in:
- app/controllers/burden_web/tasks_controller.rb
#index ⇒ Object
3 4 5 6 7 8 9 10 11 |
# File 'app/controllers/burden_web/tasks_controller.rb', line 3 def index @tasks = Burden.runs.summary (rake_tasks.map(&:name) - @tasks.map(&:name)).each do |nr_task| # Never runned tasks next if ignore? nr_task @tasks << Burden.runs.new( name: nr_task ) end end |