rake-funnel 0.3.1.pre → 0.3.2.pre
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.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1da41cf4992ddeaf2f023b7d1775bbb536245d91
|
4
|
+
data.tar.gz: 427f5aefb6590394971f58dd1d0fb158ddc34a89
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 54408b65fb95277d9c595710480504bb60bfe0974da277b5e8bbf85393c4e827d4ad37b482692804434fba1f8d1a95e0ce3042fea9f43a33311f966cd0b68043
|
7
|
+
data.tar.gz: a50098c401447487a386793457e1f2dedc5b03500ee1a8e1dd07366dd0f71910c96a558d4d5be5f3edb192a57c409837f5a296116c49015245c3afe66a512f22
|
@@ -1,7 +1,5 @@
|
|
1
1
|
module Rake::Funnel::Integration::TeamCity
|
2
2
|
class NUnitPlugin
|
3
|
-
include Rake::Funnel::Support
|
4
|
-
|
5
3
|
ENV_VAR = 'teamcity.dotnet.nunitaddin'
|
6
4
|
|
7
5
|
class << self
|
@@ -22,8 +20,8 @@ module Rake::Funnel::Integration::TeamCity
|
|
22
20
|
end
|
23
21
|
|
24
22
|
def read_version(executable)
|
25
|
-
nunit = Which.which(executable) || return
|
26
|
-
version = BinaryVersionReader.read_from(nunit)
|
23
|
+
nunit = Rake::Funnel::Support::Which.which(executable) || return
|
24
|
+
version = Rake::Funnel::Support::BinaryVersionReader.read_from(nunit)
|
27
25
|
|
28
26
|
unless version.file_version
|
29
27
|
Rake.rake_output_message("Could read version from NUnit executable in #{nunit}")
|
data/lib/rake/funnel/version.rb
CHANGED