a2zdeploy 1.0.16 → 1.0.17
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/a2zdeploy.gemspec +1 -1
- data/lib/upgrade.rb +10 -10
- 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: 3a0a34d1de85cef1a31eab32625adfeee5d2bb7c
|
|
4
|
+
data.tar.gz: dd46afd7fc6f559e6f42e6f3119384702f9e061d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3b59804897e8f8ad86b9e26392f44c7763928ad5eec7229cc8acf0e60d3571b3e7cf6b28e49f00b93b6105721a4145024303a104cba7e9bd0851d5c68583e323
|
|
7
|
+
data.tar.gz: 93c52454999b33f0356d4643f61ef5b93d0c17a8c4e9968987f4b97761420a6d6a9bdd3c19e88da959e82b9334f1a54be6b7af924ee243c4924cbaeb62d7797b
|
data/a2zdeploy.gemspec
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
s.name = 'a2zdeploy'
|
|
3
|
-
s.version = '1.0.
|
|
3
|
+
s.version = '1.0.17'
|
|
4
4
|
s.date = '2016-02-15'
|
|
5
5
|
s.summary = 'Given a project dependency chain, updates versions, builds, tests, manages service and cloud settings as well as build environment configuration'
|
|
6
6
|
s.description = 'Automated Upgrades Gem. Provides version upgrades, build and deployment configuration management'
|
data/lib/upgrade.rb
CHANGED
|
@@ -286,16 +286,16 @@ class Upgrade
|
|
|
286
286
|
end
|
|
287
287
|
|
|
288
288
|
def clear_project_env_vars
|
|
289
|
-
ENV['AI_InstrumentationKey'] = '' if
|
|
290
|
-
ENV['AppClientId'] = '' if
|
|
291
|
-
ENV['ConfigSettingsTable'] = '' if
|
|
292
|
-
ENV['env'] = '' if
|
|
293
|
-
ENV['RuntimePath'] = '' if
|
|
294
|
-
ENV['ServiceName'] = '' if
|
|
295
|
-
ENV['SettingsAccount'] = '' if
|
|
296
|
-
ENV['SettingsAccountKey'] = '' if
|
|
297
|
-
ENV['should_update_settings_connstr'] = '' if
|
|
298
|
-
ENV['unitestconnectionString'] = '' if
|
|
289
|
+
ENV['AI_InstrumentationKey'] = '' if ENV.respond_to? 'AI_InstrumentationKey'
|
|
290
|
+
ENV['AppClientId'] = '' if ENV.respond_to? 'AppClientId'
|
|
291
|
+
ENV['ConfigSettingsTable'] = '' if ENV.respond_to? 'ConfigSettingsTable'
|
|
292
|
+
ENV['env'] = '' if ENV.respond_to? 'env'
|
|
293
|
+
ENV['RuntimePath'] = '' if ENV.respond_to? 'RuntimePath'
|
|
294
|
+
ENV['ServiceName'] = '' if ENV.respond_to? 'ServiceName'
|
|
295
|
+
ENV['SettingsAccount'] = '' if ENV.respond_to? 'SettingsAccount'
|
|
296
|
+
ENV['SettingsAccountKey'] = '' if ENV.respond_to? 'SettingsAccountKey'
|
|
297
|
+
ENV['should_update_settings_connstr'] = '' if ENV.respond_to? 'should_update_settings_connstr'
|
|
298
|
+
ENV['unitestconnectionString'] = '' if ENV.respond_to? 'unitestconnectionString'
|
|
299
299
|
end
|
|
300
300
|
|
|
301
301
|
def increment_semver_if_publish is_local_run
|