dev_tasks 1.0.15 → 1.0.16
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/spec.json +1 -1
- data/lib/test.rb +6 -2
- metadata +1 -1
data/lib/spec.json
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"name":"dev_tasks","version":"1.0.
|
1
|
+
{"name":"dev_tasks","version":"1.0.16"}
|
data/lib/test.rb
CHANGED
@@ -42,10 +42,14 @@ class Test < CommandArray
|
|
42
42
|
end
|
43
43
|
|
44
44
|
def self.nunit_console
|
45
|
-
"C:\\Program Files (x86)\\NUnit 2.6.
|
45
|
+
nunit="C:\\Program Files (x86)\\NUnit 2.6.4\\bin\\nunit-console.exe"
|
46
|
+
nunit="C:\\Program Files (x86)\\NUnit 2.6.3\\bin\\nunit-console.exe" if(!File.exists?(nunit))
|
47
|
+
nunit
|
46
48
|
end
|
47
49
|
def self.nunit_console_x86
|
48
|
-
"C:\\Program Files (x86)\\NUnit 2.6.
|
50
|
+
nunit="C:\\Program Files (x86)\\NUnit 2.6.4\\bin\\nunit-console-x86.exe"
|
51
|
+
nunit="C:\\Program Files (x86)\\NUnit 2.6.3\\bin\\nunit-console-x86.exe" if(!File.exists?(nunit))
|
52
|
+
nunit
|
49
53
|
end
|
50
54
|
|
51
55
|
end
|