salesforce-deploy-tool 0.9.0 → 0.9.1
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/lib/salesforcedeploytool/app.rb +2 -2
- data/lib/salesforcedeploytool/version.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: 748672e4256f284b884e61cd6ba4951661891c79
|
|
4
|
+
data.tar.gz: c59c1d47ea70f4c60877da96002b6330948a75a1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9864645efdb9ca34dc55fa202aaa94c605c016dd815cddea93fbbbcad2a8c57883a330021812776e46a546651d995fd01fe30a625e76ed6da2db0c5c24e678e8
|
|
7
|
+
data.tar.gz: edb5aa074fdb2ccda5dd9e91ab0394a4ad5e5b92521a35dd6171f3ebb7841c4a10020d0199f0456bace6f9f190345020136f5b6cfa69266ee138756522bae244
|
|
@@ -17,11 +17,11 @@ module SalesforceDeployTool
|
|
|
17
17
|
( @deploy_ignore_files = config[:deploy_ignore_files] ).nil? and raise "Invalid Config: deploy_ignore_files not found"
|
|
18
18
|
( @build_number_pattern = config[:build_number_pattern] ).nil? and raise "Invalid Config: build_number_pattern not found"
|
|
19
19
|
( @commit_hash_pattern = config[:commit_hash_pattern] ).nil? and raise "Invalid Config: commit_hash_pattern not found"
|
|
20
|
+
( @version_file = config[:version_file] ).nil? and raise "Invalid Config: version_file not found"
|
|
20
21
|
|
|
21
|
-
config[:version_file].nil? and raise "Invalid Config: version_file not found"
|
|
22
22
|
config[:username].nil? and raise "Invalid Config: username not found, please run `sf config`"
|
|
23
|
+
config[:password].nil? and raise "Invalid Config: password not found, please run `sf config`"
|
|
23
24
|
|
|
24
|
-
@version_file = File.join(@git_dir,config[:version_file])
|
|
25
25
|
@username = @sandbox == 'prod' ? config[:username] : config[:username] + '.' + @sandbox
|
|
26
26
|
@server_url = @sandbox == 'prod' ? 'https://login.salesforce.com' : 'https://test.salesforce.com'
|
|
27
27
|
|