azdeploy 1.0.18 → 1.0.19
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 +2 -2
- data/lib/transform.rb +2 -2
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f9bb7548db5cec9e11d4a65b1a6de69159b581a1
|
|
4
|
+
data.tar.gz: 2cb3abd91e3710a067a27f407fe00ad16601632e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6b1b760dba40834d8f1700b29fad30f194f232bfbf7806693db401cff10b66d69244c5c753ee656ac33feb9219ab9a007e776959303da9731b0f1e6de6675d66
|
|
7
|
+
data.tar.gz: 61dadaefeb6b0e12263129910ebff9415ccea7d5a8c8e2f1926c8fbe770568092a38b8f7bf4cb9d15e62d72a2c8222137778ce5096fc986c6ad3a02c77a1df4c
|
data/azdeploy.gemspec
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
s.name = 'azdeploy'
|
|
3
|
-
s.version = '1.0.
|
|
4
|
-
s.date = '2015-08-
|
|
3
|
+
s.version = '1.0.19'
|
|
4
|
+
s.date = '2015-08-05'
|
|
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'
|
|
7
7
|
s.authors = ['Suresh Batta']
|
data/lib/transform.rb
CHANGED
|
@@ -218,12 +218,12 @@ class Transform
|
|
|
218
218
|
@config_files.concat(Dir.glob('**/appSettings.config'))
|
|
219
219
|
@config_files.concat(Dir.glob('**/web.config'))
|
|
220
220
|
|
|
221
|
-
settings_account_name = ENV['SettingsAccount'] || NO
|
|
221
|
+
settings_account_name = ENV['SettingsAccount'] || ENV['StorageAccount'] || NO
|
|
222
222
|
if (settings_account_name == NO)
|
|
223
223
|
puts "No settings storage account name found"
|
|
224
224
|
return false
|
|
225
225
|
end
|
|
226
|
-
settings_access_key = ENV['SettingsAccountKey'] || NO
|
|
226
|
+
settings_access_key = ENV['SettingsAccountKey'] || ENV['StorageAccountKey'] || NO
|
|
227
227
|
if (settings_access_key == NO)
|
|
228
228
|
puts "No settings storage account key found"
|
|
229
229
|
return false
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: azdeploy
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.19
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Suresh Batta
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-08-
|
|
11
|
+
date: 2015-08-05 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: Azure Deployment Gem. Provides easy setup and deployment scripting support
|
|
14
14
|
for .Net project builds
|