loris 0.2.0 → 0.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.2.0
1
+ 0.2.1
@@ -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
@@ -24,5 +24,9 @@ class CommandLineTask
24
24
  :detail => detail
25
25
  }
26
26
  end
27
+
28
+ def is_configured?(files)
29
+ return @runner.is_configured? files[:all]
30
+ end
27
31
 
28
32
  end
@@ -31,4 +31,8 @@ class ListTask
31
31
  return detail
32
32
  end
33
33
 
34
+ def is_configured?(files)
35
+ return true
36
+ end
37
+
34
38
  end
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{loris}
8
- s.version = "0.2.0"
8
+ s.version = "0.2.1"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Karl O'Keeffe"]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: loris
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Karl O'Keeffe