loris 0.2.0 → 0.2.1
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -1
- data/lib/task_manager.rb +1 -1
- data/lib/tasks/command_line_task.rb +4 -0
- data/lib/tasks/list_task.rb +4 -0
- data/loris.gemspec +1 -1
- metadata +1 -1
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.2.
|
1
|
+
0.2.1
|
data/lib/task_manager.rb
CHANGED
@@ -17,7 +17,7 @@ class TaskManager
|
|
17
17
|
task = @tasks[index]
|
18
18
|
|
19
19
|
# Don't run if this task is after the last failed task
|
20
|
-
if @fail_index >= 0 && @fail_index < index
|
20
|
+
if task.is_configured?(files) && @fail_index >= 0 && @fail_index < index
|
21
21
|
@output.add_result(@fail_result)
|
22
22
|
break
|
23
23
|
end
|
data/lib/tasks/list_task.rb
CHANGED
data/loris.gemspec
CHANGED