dev 1.0.206 → 1.0.207
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/dev/Paths.rb +8 -0
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: be76ad9f19728c4a7420ae4de835831a361403d8
|
4
|
+
data.tar.gz: 05874e493fa4119162033bb29be9e36edec33294
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f09b833f869d53473e8473afbfaade62cc983efe8cfe02df0cfd59a37c3c63d1e6828311b1eb8e68e57c025e05d4a84dbe1ffda7dd9b3671801ad0306e40ba37
|
7
|
+
data.tar.gz: 73150e534462abe4dc0cb5413b4d7273808b526dc7c10c5c87d38ee480c23d2bda45c9f7dc88fe2a6b138caf3ec3d5038589ad241024f6572554b33569537d3e
|
data/lib/dev/Paths.rb
CHANGED
@@ -37,6 +37,7 @@ class Paths < Hash
|
|
37
37
|
nunit="#{nunit_bin}/bin/nunit-console.exe" if nunit_bin.length > 3 && File.exists?("#{nunit_bin}/bin/nunit-console.exe")
|
38
38
|
nunitx86="#{nunit_bin}/bin/nunit-console-x86.exe" if nunit_bin.length > 3 && File.exists?("#{nunit_bin}/bin/nunit-console-x86.exe")
|
39
39
|
|
40
|
+
# Z:\dep\ThirdParty\NUnit\2.5.10.11092\bin\net-2.0
|
40
41
|
if nunit.length==0 || !File.exists?(nunit)
|
41
42
|
["2.6.0.12051","2.5.10.11092"].each{ |v|
|
42
43
|
Dir.glob("#{Dev::Environment.dev_root}/dep/*/NUnit/#{v}/bin/nunit-console.exe").each{|f|
|
@@ -56,6 +57,13 @@ class Paths < Hash
|
|
56
57
|
self[:nunitx86]=f if File.exists?(f) && self[:nunitx86].nil?
|
57
58
|
}
|
58
59
|
end
|
60
|
+
|
61
|
+
Dir.glob("#{Dev::Environment.dev_root}/dep/*/NUnit/#{v}/bin/net-2.0/nunit-console.exe").each{|f|
|
62
|
+
nunit=f if File.exists?(f) && self[:nunit].nil?
|
63
|
+
}
|
64
|
+
Dir.glob("#{Dev::Environment.dev_root}/dep/*/NUnit/#{v}/bin/net-2.0/nunit-console-x86.exe").each{|f|
|
65
|
+
nunitx86=f if File.exists?(f) && self[:nunitx86].nil?
|
66
|
+
}
|
59
67
|
}
|
60
68
|
end
|
61
69
|
|