salesforce-deploy-tool 0.9.0 → 0.9.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d5db1eaa074135fc75a02de5c4f8361f397d6ee1
4
- data.tar.gz: 5e55c7cec8d432a42fe6558296085cd8d021540f
3
+ metadata.gz: 748672e4256f284b884e61cd6ba4951661891c79
4
+ data.tar.gz: c59c1d47ea70f4c60877da96002b6330948a75a1
5
5
  SHA512:
6
- metadata.gz: 22819aa51eda3ad39e934e263ff9848ed6155ae689ea3228964e8c29f0f43b53738bde9fd77bc31a7d2aaca075e86a48fb09a9f26fc9615613e1d26fccd9867d
7
- data.tar.gz: 6014ad593f7d21a88a80af8a7ed25fcd9f8d9223b41eae1b139b72c112d984cef95d2ca3888f64e73992abe20a128d03603c681b558a502348ebe81bd7948989
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
 
@@ -1,3 +1,3 @@
1
1
  module SalesforceDeployTool
2
- VERSION = "0.9.0"
2
+ VERSION = "0.9.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: salesforce-deploy-tool
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.0
4
+ version: 0.9.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Juan Breinlinger