salesforcebulk 4.0.2 → 4.0.3

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 42ac9c846c52bca60cea6a59ef20772e9f73752f4a6033767b7686ab5db36c79
4
- data.tar.gz: 730c25ca9264445f4493740f294c09427e56f58236f2b12ea044c8fdc855b26f
3
+ metadata.gz: 23924cf7343edb50354ce417301d08a3bf4065f7f07c9f166d525ebc26df1b91
4
+ data.tar.gz: b18a09f9695b629081da7f09e00edc5ca5c1cb9424512c42ae5ee55f83a1689f
5
5
  SHA512:
6
- metadata.gz: 7aa5f86d57dfeb8eb463e0f7a444d5f757622ba5e26a73013c3e58b3de20c0464de541c3edef878b72a8d081ec9acac7cf99f0353f03d58942b4b583e17fc485
7
- data.tar.gz: ae2bc3c0bd319fd7f3dbde38f34233e4aadfb06af0dfba06bd53be88be477401259d22b3690c956da23c6c74940c72238f85fbf5f25398e067ee4bfef735716f
6
+ metadata.gz: 0a28b8252b9263b01fa3e5c0ce793c0cc0130fd0d1691c546fff6fb7848bf2069103dc7b1a5d489c8f426cf5af82320a747c97cd38707e6111054c0dfa9252c0
7
+ data.tar.gz: 6e01558a369c92fe96102797fcf1c70589c693dff038ac5d3ca259a244824a2fcf19a9479d31007924f87e859d9618b79309f2b7d63501b3ab59175ea811848a
@@ -18,17 +18,19 @@ module SalesforceBulk
18
18
  attr_accessor :version
19
19
 
20
20
  # The ID for authenticated session
21
- attr_reader :session_id
21
+ attr_accessor :session_id
22
22
 
23
23
  def initialize(options={})
24
24
  options = {:login_host => 'login.salesforce.com', :version => 24.0}.merge(options)
25
25
 
26
- assert_valid_keys(options, :username, :password, :login_host, :version)
26
+ assert_valid_keys(options, :username, :password, :login_host, :version, :instance_host, :session_id)
27
27
 
28
28
  self.username = options[:username]
29
29
  self.password = "#{options[:password]}"
30
30
  self.login_host = options[:login_host]
31
31
  self.version = options[:version]
32
+ self.instance_host = options[:instance_host]
33
+ self.session_id = options[:session_id]
32
34
 
33
35
  @api_path_prefix = "/services/async/#{version}/"
34
36
  @valid_operations = [:delete, :insert, :update, :upsert, :query]
@@ -11,7 +11,7 @@ module SalesforceBulk
11
11
  self.error_code = response.code
12
12
 
13
13
  if (300..308).cover?(error_code.to_i)
14
- message = "Moved to #{response.header['location']}"
14
+ message = "Moved to #{response['location']}"
15
15
  else
16
16
  data = XmlSimple.xml_in(response.body, 'ForceArray' => false)
17
17
 
@@ -1,3 +1,3 @@
1
1
  module SalesforceBulk
2
- VERSION = "4.0.2"
2
+ VERSION = "4.0.3"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: salesforcebulk
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.0.2
4
+ version: 4.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Javier Julio
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-09-21 00:00:00.000000000 Z
11
+ date: 2023-02-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: xml-simple
@@ -115,7 +115,7 @@ files:
115
115
  homepage: https://github.com/javierjulio/salesforce_bulk
116
116
  licenses: []
117
117
  metadata: {}
118
- post_install_message:
118
+ post_install_message:
119
119
  rdoc_options: []
120
120
  require_paths:
121
121
  - lib
@@ -130,8 +130,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
130
130
  - !ruby/object:Gem::Version
131
131
  version: '0'
132
132
  requirements: []
133
- rubygems_version: 3.3.6
134
- signing_key:
133
+ rubygems_version: 3.4.5
134
+ signing_key:
135
135
  specification_version: 4
136
136
  summary: Full capability support for the Salesforce Bulk API.
137
137
  test_files: []