salesforce-deploy-tool 0.9.4 → 0.9.5

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: 104d2dbf967fdd2db6d3df24d7c5e25425f1bee3
4
- data.tar.gz: 495c840e49d1043c0858e5157106371ab2064a08
3
+ metadata.gz: 420a91ffb99ed539121756f96fba8da1798ca74f
4
+ data.tar.gz: e37f2952541ed8ff2291871e488cf7da3343cb83
5
5
  SHA512:
6
- metadata.gz: 38a2ece138888d62658a516cb84f970aee0690bc331ad04c011c8b24407d283393b1b0aff5d4066098457a77928dbd3d48fa1c254a2c0785275a02747f356687
7
- data.tar.gz: c9b0a29a6236cdc13f57555b413270d411d180712002ea3922b5acb01ad88a9c898869e0a6e96551cc70f3958a13d29169a47b4b1dd21a879aaf09150446e410
6
+ metadata.gz: b5eb71b9593e528f41dc8b8777c4374d8791941aaae1488dd30dda4bafdabe6785c69b07102fd658b1d8cb97bfd93d8558a529a656348ca51e227ab979032006
7
+ data.tar.gz: 31d0f5517157438bc77327097b6e4385687e1dc7810c3ebe34e9fc9313795c318133c8ef1c3ba7f531e5453cf0c007873b7abba7cf84261a7b4b763f0611cc23
data/bin/sf CHANGED
@@ -25,15 +25,16 @@ config = {}
25
25
  end
26
26
 
27
27
  # Grab variables from env if not in the config files
28
- config[:git_dir] = ENV["GIT_DIR"] || config[:git_dir]
29
- config[:tmp_dir] = ENV["TMP_DIR"] || config[:tmp_dir]
30
- config[:version_file] = ENV["VERSION_FILE"] || config[:version_file]
31
- config[:build_number_pattern] = ENV["BUILD_NUMBER_PATTERN"] || config[:build_number_pattern]
32
- config[:commit_hash_pattern] = ENV["COMMIT_HASH_PATTERN"] || config[:commit_hash_pattern]
33
- config[:git_repo] = ENV["GIT_REPO"] || config[:git_repo]
34
- config[:deploy_ignore_files] = ENV["DEPLOY_IGNORE_FILES"].split(',') || config[:deploy_ignore_files]
35
- config[:username] = ENV["USERNAME"] || config[:username]
36
- config[:password] = ENV["PASSWORD"] || config[:password]
28
+ config[:git_dir] = ENV["GIT_DIR"] || config[:git_dir]
29
+ config[:tmp_dir] = ENV["TMP_DIR"] || config[:tmp_dir]
30
+ config[:version_file] = ENV["VERSION_FILE"] || config[:version_file]
31
+ config[:build_number_pattern] = ENV["BUILD_NUMBER_PATTERN"] || config[:build_number_pattern]
32
+ config[:commit_hash_pattern] = ENV["COMMIT_HASH_PATTERN"] || config[:commit_hash_pattern]
33
+ config[:git_repo] = ENV["GIT_REPO"] || config[:git_repo]
34
+ config[:username] = ENV["USERNAME"] || config[:username]
35
+ config[:password] = ENV["PASSWORD"] || config[:password]
36
+
37
+ config[:deploy_ignore_files] = ENV["DEPLOY_IGNORE_FILES"].nil? ? config[:deploy_ignore_files] : ENV["DEPLOY_IGNORE_FILES"].split(',')
37
38
 
38
39
  # Read sandbox environment
39
40
 
@@ -1,3 +1,3 @@
1
1
  module SalesforceDeployTool
2
- VERSION = "0.9.4"
2
+ VERSION = "0.9.5"
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.4
4
+ version: 0.9.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Juan Breinlinger