salesforce_bulk_api 1.0.0 → 1.1.0
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/lib/salesforce_bulk_api/version.rb +1 -1
- data/lib/salesforce_bulk_api.rb +2 -4
- data/salesforce_bulk_api.gemspec +1 -1
- metadata +7 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a396ff6ca0368b07ef0d575fed3345ec4c607a1598d4907424e4ad9d8a31f320
|
|
4
|
+
data.tar.gz: 951672b7488408a307cfa2f5b839db7e41e5bac355f68dd73f78b2daff640e8c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: de9dea929fb56da1d7c5d8e40e5d17069c0aa83bc124928d49f5e51a9cb0d87c09fc44613472394eeff5573347f9f9c7599623e54d88c65256a7efaaf0211d14
|
|
7
|
+
data.tar.gz: 875aa664d88b10f545fe346990619e914051dffc12141fb3e48fbaa7094b362fca4c6390abb007bb4d3be7faf255c21d6c2c08c7d1372b99da9744c0555123bb
|
data/lib/salesforce_bulk_api.rb
CHANGED
|
@@ -13,10 +13,8 @@ module SalesforceBulkApi
|
|
|
13
13
|
class Api
|
|
14
14
|
attr_reader :connection
|
|
15
15
|
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
def initialize(client)
|
|
19
|
-
@connection = SalesforceBulkApi::Connection.new(SALESFORCE_API_VERSION, client)
|
|
16
|
+
def initialize(client, salesforce_api_version = "46.0")
|
|
17
|
+
@connection = SalesforceBulkApi::Connection.new(salesforce_api_version, client)
|
|
20
18
|
@listeners = { job_created: [] }
|
|
21
19
|
end
|
|
22
20
|
|
data/salesforce_bulk_api.gemspec
CHANGED
|
@@ -6,7 +6,7 @@ Gem::Specification.new do |s|
|
|
|
6
6
|
s.name = 'salesforce_bulk_api'
|
|
7
7
|
s.version = SalesforceBulkApi::VERSION
|
|
8
8
|
s.authors = ['Yatish Mehta']
|
|
9
|
-
s.email = ['
|
|
9
|
+
s.email = ['hi@example.com']
|
|
10
10
|
|
|
11
11
|
s.homepage = 'https://github.com/yatishmehta27/salesforce_bulk_api'
|
|
12
12
|
s.summary = %q{It uses the bulk api of salesforce to communicate with Salesforce CRM}
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: salesforce_bulk_api
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.1.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Yatish Mehta
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2024-06-13 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: json
|
|
@@ -96,7 +96,7 @@ dependencies:
|
|
|
96
96
|
version: '0'
|
|
97
97
|
description: Salesforce Bulk API with governor limits taken care of
|
|
98
98
|
email:
|
|
99
|
-
-
|
|
99
|
+
- hi@example.com
|
|
100
100
|
executables: []
|
|
101
101
|
extensions: []
|
|
102
102
|
extra_rdoc_files: []
|
|
@@ -119,7 +119,7 @@ files:
|
|
|
119
119
|
homepage: https://github.com/yatishmehta27/salesforce_bulk_api
|
|
120
120
|
licenses: []
|
|
121
121
|
metadata: {}
|
|
122
|
-
post_install_message:
|
|
122
|
+
post_install_message:
|
|
123
123
|
rdoc_options: []
|
|
124
124
|
require_paths:
|
|
125
125
|
- lib
|
|
@@ -134,8 +134,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
134
134
|
- !ruby/object:Gem::Version
|
|
135
135
|
version: '0'
|
|
136
136
|
requirements: []
|
|
137
|
-
rubygems_version: 3.
|
|
138
|
-
signing_key:
|
|
137
|
+
rubygems_version: 3.5.10
|
|
138
|
+
signing_key:
|
|
139
139
|
specification_version: 4
|
|
140
140
|
summary: It uses the bulk api of salesforce to communicate with Salesforce CRM
|
|
141
141
|
test_files:
|