leap_salesforce 1.2.0 → 1.2.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/ChangeLog +3 -0
- data/Rakefile +1 -0
- data/lib/leap_salesforce/session.rb +5 -1
- data/lib/leap_salesforce/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 44ffa8e3367450ab36724adf3fc899d2cb95afe6f53d35e691f0b195abb76951
|
4
|
+
data.tar.gz: 913a39e2840894dd0c1a906a301ae864b1e368b9ebc80fa4e547315c06c25497
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b0f4e1e61acf32114e51fe16451ea745d92198eb3944177885bc0f3cbc36bada65bc70c5efaa596978422b31246eaf3cd16aeab927ede42662dff79aa74d97dd
|
7
|
+
data.tar.gz: a8f1cfaea86a0766dbe58889e46c9a51370c2a934140bb37f55d5da235b31af7640aa2b79d70125aa6b9626d92d722d35c19d85d89e018f21d0b3f8210409ba1
|
data/ChangeLog
CHANGED
data/Rakefile
CHANGED
@@ -27,12 +27,16 @@ module LeapSalesforce
|
|
27
27
|
client = Savon.client do
|
28
28
|
endpoint "#{SoqlHandler.instance_url}/services/Soap/u/51.0"
|
29
29
|
namespace "urn:partner.soap.sforce.com"
|
30
|
+
log true # See request and response. (Put this in traffic file)
|
31
|
+
log_level :debug
|
32
|
+
logger Soaspec::SpecLogger.create
|
33
|
+
pretty_print_xml true # Prints XML pretty
|
30
34
|
end
|
31
35
|
|
32
36
|
response = client.call(:login, message:
|
33
37
|
{
|
34
38
|
username: username,
|
35
|
-
password: password + security_token
|
39
|
+
password: password + security_token.to_s
|
36
40
|
})
|
37
41
|
response.body
|
38
42
|
end
|