salesforce-deploy-tool 0.7.2 → 0.7.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/bin/sf +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: 9312bcf7bdcde9cf1de413cf832eea3b994bb528
|
4
|
+
data.tar.gz: 37aa56ed035fb246e3746805b0155c2fecea5401
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9a967b03aa7e93240372f8251212b264336d3082015df4aa1ecd0c14dd6fb5760ce6072ee0dc696dafbb84d6cd1011e64ce73182d7671039bc4f432a654ea9bf
|
7
|
+
data.tar.gz: 4129b5575a9ddbc19863712777b98c5c69f34069a4c5329a83cc5bee5359ac208d7af38b8b67ce4738c5a4dfe393d9d34701c361c02f8cd9ea0b043eb7850b7f
|
data/bin/sf
CHANGED
@@ -185,7 +185,7 @@ command :config do |c|
|
|
185
185
|
config_new = {}
|
186
186
|
|
187
187
|
config_new[:username] = ask "Please enter your SalesForce production login user name" do |q|
|
188
|
-
q.validate =
|
188
|
+
q.validate = /^\S+@\S+$/
|
189
189
|
end.to_s
|
190
190
|
|
191
191
|
config_new[:password] = ask "Please enter your Salesforce production password" do |q|
|
@@ -197,7 +197,7 @@ command :config do |c|
|
|
197
197
|
end
|
198
198
|
|
199
199
|
git_email = ask "Please enter your email to be used as commit email on GIT" do |q|
|
200
|
-
q.validate =
|
200
|
+
q.validate = /^\S+@\S+$/
|
201
201
|
end
|
202
202
|
|
203
203
|
%x[git config --global user.email "#{git_email}"]
|