azdeploy 1.0.5 → 1.0.6
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 +4 -4
- data/azdeploy.gemspec +1 -1
- data/lib/build.rb +12 -9
- data/lib/install.rb +1 -1
- 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: d641edc2351de9de6a089360ef798010373e52b2
|
4
|
+
data.tar.gz: 2b9ee156665ba236991c40581d50e364cff33024
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6580073fb6c9f20a4d0bb4e9049ae994c6c8783a116f00e5e24010a82038d0eb660ce1cafc5dfc3a2eedfbd3c2fffe7e94d5b410f4abe0c763e0c5e5023b0253
|
7
|
+
data.tar.gz: 6ccc1b58472170531304c354453dfbc6a0da25d92a450df09a4ad02552da5867d136d1991972f9cdb833d50591d8de281307178ae13fb3df91749acdd2eb59c6
|
data/azdeploy.gemspec
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Gem::Specification.new do |s|
|
2
2
|
s.name = 'azdeploy'
|
3
|
-
s.version = '1.0.
|
3
|
+
s.version = '1.0.6'
|
4
4
|
s.date = '2015-02-04'
|
5
5
|
s.summary = 'Setup and scripting support for .Net project builds'
|
6
6
|
s.description = 'Azure Deployment Gem. Provides easy setup and deployment scripting support for .Net project builds'
|
data/lib/build.rb
CHANGED
@@ -60,14 +60,17 @@ end
|
|
60
60
|
|
61
61
|
def cleantask(props)
|
62
62
|
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
63
|
+
if props.has_key?(:output) && File.directory?(props[:output])
|
64
|
+
FileUtils.rm_rf props[:output]
|
65
|
+
waitfor { !exists?(props[:output]) }
|
66
|
+
Dir.mkdir props[:output]
|
67
|
+
end
|
68
68
|
|
69
|
-
|
70
|
-
|
69
|
+
if props.has_key?(:artifacts) && File.directory?(props[:artifacts])
|
70
|
+
FileUtils.rm_rf props[:artifacts]
|
71
|
+
waitfor { !exists?(props[:artifacts]) }
|
72
|
+
Dir.mkdir props[:artifacts]
|
73
|
+
end
|
71
74
|
|
72
75
|
end
|
73
76
|
|
@@ -150,9 +153,9 @@ def check_package_version_dependency(package_uri, package)
|
|
150
153
|
# for each file match version. Return false is check fails
|
151
154
|
config_files.each{ |file|
|
152
155
|
doc = Nokogiri::XML(File.read(file))
|
153
|
-
node = doc.
|
156
|
+
node = doc.at_xpath("//*[@id=\"#{package}\"]")
|
154
157
|
if (!node.nil?)
|
155
|
-
config_version = node.attr('version')
|
158
|
+
config_version = node.attr('version')
|
156
159
|
puts "Package: #{package} Latest Version: #{version} File: #{file} File package version: #{config_version}"
|
157
160
|
return false unless config_version.to_s == version
|
158
161
|
end
|
data/lib/install.rb
CHANGED
@@ -80,7 +80,7 @@ def check_ruby
|
|
80
80
|
localVersion = "#{RUBY_VERSION}-p#{RUBY_PATCHLEVEL}"
|
81
81
|
expectedVersion1 = '1.9.3-p551'
|
82
82
|
expectedVersion2 = '2.0.0-p481'
|
83
|
-
if (!rubyVersion.nil? && localVersion != expectedVersion1
|
83
|
+
if (!rubyVersion.nil? && (localVersion != expectedVersion1 || localVersion != expectedVersion2))
|
84
84
|
puts "Uninstall incompatible version of ruby: #{localVersion} and install version: #{expectedVersion1} or #{expectedVersion2}. Then Restart rake. Goto http://rubyinstaller.org/downloads/"
|
85
85
|
return false
|
86
86
|
end
|