salesforce_streamer 2.6.0 → 2.9.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.bundler-version +1 -1
- data/.dependabot/config.yml +3 -0
- data/.github/workflows/auto-approve.yml +8 -9
- data/.github/workflows/auto-merge-dependencies.yml +24 -0
- data/.github/workflows/auto-merge.yml +4 -1
- data/.github/workflows/ci.yml +3 -6
- data/CHANGELOG.md +16 -0
- data/Gemfile +8 -1
- data/Gemfile.lock +63 -67
- data/{LICENSE.txt → LICENSE} +1 -1
- data/Rakefile +1 -1
- data/lib/salesforce_streamer/configuration.rb +1 -1
- data/lib/salesforce_streamer/push_topic.rb +3 -1
- data/lib/salesforce_streamer/version.rb +1 -1
- data/salesforce_streamer.gemspec +7 -12
- metadata +11 -108
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 37ecb05f56dfcbd08975ebc0817052aea8a7277df49c557367538ad74aa16ed9
|
4
|
+
data.tar.gz: 7717a73fd3099d82113a5017974323fb20785d12da0bd74ad7f9937bb03c24f9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 34f17dfc6ea550a8417783a505129d94546a09b94b1828e3df9ccf30ebf9d8a8f0b62bada15faeb3e98db46c9bbebdde66950f2368bbeee7ba7d7b2b33e86353
|
7
|
+
data.tar.gz: 58edcf243d803c25ff545a3ae90da695c030b5e140a17ffdbf6f914926528f6e7cad794a7d5c7d5472490ed5494baea47ae1bca2607d463615d5d88be4e84605
|
data/.bundler-version
CHANGED
@@ -1 +1 @@
|
|
1
|
-
2.
|
1
|
+
2.4.17
|
data/.dependabot/config.yml
CHANGED
@@ -1,14 +1,13 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
on: pull_request_target
|
1
|
+
name: Auto approve dependency upgrades and hot-fix PRs
|
2
|
+
on:
|
3
|
+
pull_request_target:
|
4
|
+
types: [labeled, unlabeled, edited, ready_for_review, review_requested, auto_merge_enabled]
|
6
5
|
|
7
6
|
jobs:
|
8
7
|
auto-approve:
|
9
8
|
runs-on: ubuntu-latest
|
10
9
|
steps:
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
10
|
+
- uses: hmarr/auto-approve-action@v3
|
11
|
+
if: github.actor == 'dependabot[bot]' || github.actor == 'dependabot-preview[bot]' || github.actor == 'renofidev' || contains(toJson(github), 'HOTFIX-AUTO-APPROVE')
|
12
|
+
with:
|
13
|
+
github-token: "${{ secrets.GITHUB_TOKEN }}"
|
@@ -0,0 +1,24 @@
|
|
1
|
+
name: automerge-dependencies
|
2
|
+
on:
|
3
|
+
pull_request_review:
|
4
|
+
types:
|
5
|
+
- submitted
|
6
|
+
check_suite:
|
7
|
+
types:
|
8
|
+
- completed
|
9
|
+
label:
|
10
|
+
types:
|
11
|
+
- created
|
12
|
+
status: {}
|
13
|
+
jobs:
|
14
|
+
automerge:
|
15
|
+
runs-on: ubuntu-latest
|
16
|
+
steps:
|
17
|
+
- name: automerge-dependencies
|
18
|
+
uses: pascalgn/automerge-action@v0.15.6
|
19
|
+
env:
|
20
|
+
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
|
21
|
+
MERGE_METHOD: squash
|
22
|
+
MERGE_DELETE_BRANCH: true
|
23
|
+
MERGE_LABELS: dependencies
|
24
|
+
MERGE_REMOVE_LABELS: ""
|
@@ -6,13 +6,16 @@ on:
|
|
6
6
|
check_suite:
|
7
7
|
types:
|
8
8
|
- completed
|
9
|
+
label:
|
10
|
+
types:
|
11
|
+
- created
|
9
12
|
status: {}
|
10
13
|
jobs:
|
11
14
|
automerge:
|
12
15
|
runs-on: ubuntu-latest
|
13
16
|
steps:
|
14
17
|
- name: automerge
|
15
|
-
uses:
|
18
|
+
uses: pascalgn/automerge-action@v0.15.6
|
16
19
|
env:
|
17
20
|
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
|
18
21
|
MERGE_METHOD: squash
|
data/.github/workflows/ci.yml
CHANGED
@@ -11,15 +11,12 @@ jobs:
|
|
11
11
|
runs-on: ubuntu-latest
|
12
12
|
strategy:
|
13
13
|
matrix:
|
14
|
-
ruby-version: [
|
14
|
+
ruby-version: [3.1, 3.2]
|
15
15
|
|
16
16
|
steps:
|
17
|
-
- uses: actions/checkout@
|
17
|
+
- uses: actions/checkout@v3
|
18
18
|
- name: Set up Ruby
|
19
|
-
|
20
|
-
# change this to (see https://github.com/ruby/setup-ruby#versioning):
|
21
|
-
# uses: ruby/setup-ruby@v1
|
22
|
-
uses: ruby/setup-ruby@bd94d6a504586da892a5753afdd1480096ed30df
|
19
|
+
uses: ruby/setup-ruby@v1
|
23
20
|
with:
|
24
21
|
ruby-version: ${{ matrix.ruby-version }}
|
25
22
|
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
|
data/CHANGELOG.md
CHANGED
@@ -3,6 +3,22 @@
|
|
3
3
|
Sorted so that the most recent change logs are near the top. Only significant
|
4
4
|
changes are logged in the change log.
|
5
5
|
|
6
|
+
## 2023-07-26 Krzysztof Knapik
|
7
|
+
|
8
|
+
v2.9 take default api version from `SALESFORCE_API_VERSION` env var
|
9
|
+
|
10
|
+
## 2023-02-14 Krzysztof Knapik
|
11
|
+
|
12
|
+
v2.8 bump dependency constraints, restforce 6.2+
|
13
|
+
|
14
|
+
## 2022-08-01 Krzysztof Knapik
|
15
|
+
|
16
|
+
v2.7 bump dependency constraints
|
17
|
+
|
18
|
+
## 2022-04-10 Krzysztof Knapik
|
19
|
+
|
20
|
+
v2.6 drops ruby 2.7 support and adds ruby 3.1 support
|
21
|
+
|
6
22
|
## 2020-08-17 Scott Serok [scott@renofi.com](mailto:scott@renofi.com)
|
7
23
|
|
8
24
|
v2.1 changes the expected interface of `Configuration#replay_adapter`.
|
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
@@ -1,18 +1,18 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
salesforce_streamer (2.
|
5
|
-
cookiejar (~> 0.3
|
6
|
-
dry-initializer (~> 3.
|
4
|
+
salesforce_streamer (2.9.0)
|
5
|
+
cookiejar (~> 0.3)
|
6
|
+
dry-initializer (~> 3.1)
|
7
7
|
eventmachine (~> 1.2)
|
8
8
|
faye (~> 1.4)
|
9
|
-
restforce (~>
|
9
|
+
restforce (~> 6.2)
|
10
10
|
|
11
11
|
GEM
|
12
12
|
remote: https://rubygems.org/
|
13
13
|
specs:
|
14
|
-
addressable (2.8.
|
15
|
-
public_suffix (>= 2.0.2, <
|
14
|
+
addressable (2.8.4)
|
15
|
+
public_suffix (>= 2.0.2, < 6.0)
|
16
16
|
ast (2.4.2)
|
17
17
|
byebug (11.1.3)
|
18
18
|
codecov (0.6.0)
|
@@ -30,27 +30,14 @@ GEM
|
|
30
30
|
em-socksify (0.3.2)
|
31
31
|
eventmachine (>= 1.0.0.beta.4)
|
32
32
|
eventmachine (1.2.7)
|
33
|
-
faraday (
|
34
|
-
faraday-
|
35
|
-
faraday-em_synchrony (~> 1.0)
|
36
|
-
faraday-excon (~> 1.1)
|
37
|
-
faraday-httpclient (~> 1.0.1)
|
38
|
-
faraday-net_http (~> 1.0)
|
39
|
-
faraday-net_http_persistent (~> 1.1)
|
40
|
-
faraday-patron (~> 1.0)
|
41
|
-
faraday-rack (~> 1.0)
|
42
|
-
multipart-post (>= 1.2, < 3)
|
33
|
+
faraday (2.7.10)
|
34
|
+
faraday-net_http (>= 2.0, < 3.1)
|
43
35
|
ruby2_keywords (>= 0.0.4)
|
44
|
-
faraday-
|
45
|
-
|
46
|
-
faraday-
|
47
|
-
|
48
|
-
faraday-net_http (
|
49
|
-
faraday-net_http_persistent (1.2.0)
|
50
|
-
faraday-patron (1.0.0)
|
51
|
-
faraday-rack (1.0.0)
|
52
|
-
faraday_middleware (1.2.0)
|
53
|
-
faraday (~> 1.0)
|
36
|
+
faraday-follow_redirects (0.3.0)
|
37
|
+
faraday (>= 1, < 3)
|
38
|
+
faraday-multipart (1.0.4)
|
39
|
+
multipart-post (~> 2)
|
40
|
+
faraday-net_http (3.0.2)
|
54
41
|
faye (1.4.0)
|
55
42
|
cookiejar (>= 0.3.0)
|
56
43
|
em-http-request (>= 1.1.6)
|
@@ -59,57 +46,71 @@ GEM
|
|
59
46
|
multi_json (>= 1.0.0)
|
60
47
|
rack (>= 1.0.0)
|
61
48
|
websocket-driver (>= 0.5.1)
|
62
|
-
faye-websocket (0.11.
|
49
|
+
faye-websocket (0.11.3)
|
63
50
|
eventmachine (>= 0.12.0)
|
64
51
|
websocket-driver (>= 0.5.1)
|
65
52
|
hashie (5.0.0)
|
66
53
|
http_parser.rb (0.8.0)
|
67
|
-
|
54
|
+
json (2.6.3)
|
55
|
+
jwt (2.7.1)
|
56
|
+
language_server-protocol (3.17.0.3)
|
68
57
|
multi_json (1.15.0)
|
69
|
-
multipart-post (2.
|
70
|
-
parallel (1.
|
71
|
-
parser (3.
|
58
|
+
multipart-post (2.3.0)
|
59
|
+
parallel (1.23.0)
|
60
|
+
parser (3.2.2.3)
|
72
61
|
ast (~> 2.4.1)
|
73
|
-
|
74
|
-
|
62
|
+
racc
|
63
|
+
public_suffix (5.0.3)
|
64
|
+
racc (1.7.1)
|
65
|
+
rack (3.0.8)
|
75
66
|
rainbow (3.1.1)
|
76
67
|
rake (13.0.6)
|
77
|
-
regexp_parser (2.
|
78
|
-
restforce (
|
79
|
-
faraday (>=
|
80
|
-
|
68
|
+
regexp_parser (2.8.1)
|
69
|
+
restforce (6.2.3)
|
70
|
+
faraday (>= 1.1.0, < 2.8.0)
|
71
|
+
faraday-follow_redirects (<= 0.3.0, < 1.0.0)
|
72
|
+
faraday-multipart (>= 1.0.0, < 2.0.0)
|
73
|
+
faraday-net_http (< 4.0.0)
|
81
74
|
hashie (>= 1.2.0, < 6.0)
|
82
75
|
jwt (>= 1.5.6)
|
83
76
|
rexml (3.2.5)
|
84
|
-
rspec (3.
|
85
|
-
rspec-core (~> 3.
|
86
|
-
rspec-expectations (~> 3.
|
87
|
-
rspec-mocks (~> 3.
|
88
|
-
rspec-core (3.
|
89
|
-
rspec-support (~> 3.
|
90
|
-
rspec-expectations (3.
|
77
|
+
rspec (3.12.0)
|
78
|
+
rspec-core (~> 3.12.0)
|
79
|
+
rspec-expectations (~> 3.12.0)
|
80
|
+
rspec-mocks (~> 3.12.0)
|
81
|
+
rspec-core (3.12.2)
|
82
|
+
rspec-support (~> 3.12.0)
|
83
|
+
rspec-expectations (3.12.3)
|
91
84
|
diff-lcs (>= 1.2.0, < 2.0)
|
92
|
-
rspec-support (~> 3.
|
93
|
-
rspec-mocks (3.
|
85
|
+
rspec-support (~> 3.12.0)
|
86
|
+
rspec-mocks (3.12.6)
|
94
87
|
diff-lcs (>= 1.2.0, < 2.0)
|
95
|
-
rspec-support (~> 3.
|
96
|
-
rspec-support (3.
|
97
|
-
rubocop (1.
|
88
|
+
rspec-support (~> 3.12.0)
|
89
|
+
rspec-support (3.12.1)
|
90
|
+
rubocop (1.55.0)
|
91
|
+
json (~> 2.3)
|
92
|
+
language_server-protocol (>= 3.17.0)
|
98
93
|
parallel (~> 1.10)
|
99
|
-
parser (>= 3.
|
94
|
+
parser (>= 3.2.2.3)
|
100
95
|
rainbow (>= 2.2.2, < 4.0)
|
101
96
|
regexp_parser (>= 1.8, < 3.0)
|
102
|
-
rexml
|
103
|
-
rubocop-ast (>= 1.
|
97
|
+
rexml (>= 3.2.5, < 4.0)
|
98
|
+
rubocop-ast (>= 1.28.1, < 2.0)
|
104
99
|
ruby-progressbar (~> 1.7)
|
105
|
-
unicode-display_width (>=
|
106
|
-
rubocop-ast (1.
|
107
|
-
parser (>= 3.
|
100
|
+
unicode-display_width (>= 2.4.0, < 3.0)
|
101
|
+
rubocop-ast (1.29.0)
|
102
|
+
parser (>= 3.2.1.0)
|
103
|
+
rubocop-capybara (2.18.0)
|
104
|
+
rubocop (~> 1.41)
|
105
|
+
rubocop-factory_bot (2.23.1)
|
106
|
+
rubocop (~> 1.33)
|
108
107
|
rubocop-rake (0.6.0)
|
109
108
|
rubocop (~> 1.0)
|
110
|
-
rubocop-rspec (2.
|
111
|
-
rubocop (~> 1.
|
112
|
-
|
109
|
+
rubocop-rspec (2.22.0)
|
110
|
+
rubocop (~> 1.33)
|
111
|
+
rubocop-capybara (~> 2.17)
|
112
|
+
rubocop-factory_bot (~> 2.22)
|
113
|
+
ruby-progressbar (1.13.0)
|
113
114
|
ruby2_keywords (0.0.5)
|
114
115
|
simplecov (0.21.2)
|
115
116
|
docile (~> 1.1)
|
@@ -117,18 +118,13 @@ GEM
|
|
117
118
|
simplecov_json_formatter (~> 0.1)
|
118
119
|
simplecov-html (0.12.3)
|
119
120
|
simplecov_json_formatter (0.1.4)
|
120
|
-
unicode-display_width (2.
|
121
|
-
websocket-driver (0.7.
|
121
|
+
unicode-display_width (2.4.2)
|
122
|
+
websocket-driver (0.7.6)
|
122
123
|
websocket-extensions (>= 0.1.0)
|
123
124
|
websocket-extensions (0.1.5)
|
124
125
|
|
125
126
|
PLATFORMS
|
126
|
-
|
127
|
-
x86_64-darwin-18
|
128
|
-
x86_64-darwin-19
|
129
|
-
x86_64-darwin-20
|
130
|
-
x86_64-darwin-21
|
131
|
-
x86_64-linux
|
127
|
+
ruby
|
132
128
|
|
133
129
|
DEPENDENCIES
|
134
130
|
byebug
|
@@ -141,4 +137,4 @@ DEPENDENCIES
|
|
141
137
|
salesforce_streamer!
|
142
138
|
|
143
139
|
BUNDLED WITH
|
144
|
-
2.
|
140
|
+
2.4.12
|
data/{LICENSE.txt → LICENSE}
RENAMED
data/Rakefile
CHANGED
@@ -54,7 +54,7 @@ module SalesforceStreamer
|
|
54
54
|
def push_topic_data
|
55
55
|
return @push_topic_data if @push_topic_data
|
56
56
|
|
57
|
-
data = YAML.
|
57
|
+
data = YAML.safe_load_file(config_file, aliases: true)
|
58
58
|
@push_topic_data = data[environment.to_s]
|
59
59
|
end
|
60
60
|
|
@@ -3,11 +3,13 @@ module SalesforceStreamer
|
|
3
3
|
class PushTopic
|
4
4
|
extend Dry::Initializer
|
5
5
|
|
6
|
+
DEFAULT_API_VERSION = ENV.fetch('SALESFORCE_API_VERSION', '58.0')
|
7
|
+
|
6
8
|
option :name
|
7
9
|
option :query, ->(v) { v.gsub(/\s+/, ' ') }
|
8
10
|
option :handler, ->(v) { prepare_handler_proc(Object.const_get(v)) }
|
9
11
|
option :replay, ->(v) { v.to_i }, default: -> { -1 }
|
10
|
-
option :api_version, proc(&:to_s), default: -> {
|
12
|
+
option :api_version, proc(&:to_s), default: -> { DEFAULT_API_VERSION }
|
11
13
|
option :notify_for_fields, default: -> { 'Referenced' }
|
12
14
|
option :id, optional: true
|
13
15
|
option :description, optional: true
|
data/salesforce_streamer.gemspec
CHANGED
@@ -26,19 +26,14 @@ Gem::Specification.new do |spec|
|
|
26
26
|
|
27
27
|
spec.required_ruby_version = '>= 3.0'
|
28
28
|
|
29
|
-
spec.add_dependency 'cookiejar', '~> 0.3
|
30
|
-
spec.add_dependency 'dry-initializer', '~> 3.
|
29
|
+
spec.add_dependency 'cookiejar', '~> 0.3'
|
30
|
+
spec.add_dependency 'dry-initializer', '~> 3.1'
|
31
31
|
spec.add_dependency 'faye', '~> 1.4'
|
32
|
-
spec.add_dependency 'restforce', '~>
|
33
|
-
#
|
32
|
+
spec.add_dependency 'restforce', '~> 6.2'
|
33
|
+
# When you have issues installing eventmachine on osx and ruby 3, try:
|
34
|
+
# export LDFLAGS="-L/opt/homebrew/opt/openssl@1.1/lib"
|
35
|
+
# export CPPFLAGS="-I/opt/homebrew/opt/openssl@1.1/include"
|
36
|
+
# export PKG_CONFIG_PATH="/opt/homebrew/opt/openssl@1.1/lib/pkgconfig"
|
34
37
|
# gem install eventmachine -- --with-openssl-dir=/usr/local/opt/openssl@1.1
|
35
38
|
spec.add_dependency 'eventmachine', '~> 1.2'
|
36
|
-
|
37
|
-
spec.add_development_dependency 'byebug'
|
38
|
-
spec.add_development_dependency 'codecov'
|
39
|
-
spec.add_development_dependency 'rake'
|
40
|
-
spec.add_development_dependency 'rspec'
|
41
|
-
spec.add_development_dependency 'rubocop'
|
42
|
-
spec.add_development_dependency 'rubocop-rake'
|
43
|
-
spec.add_development_dependency 'rubocop-rspec'
|
44
39
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: salesforce_streamer
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.9.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Scott Serok
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: exe
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2023-07-26 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: cookiejar
|
@@ -17,28 +17,28 @@ dependencies:
|
|
17
17
|
requirements:
|
18
18
|
- - "~>"
|
19
19
|
- !ruby/object:Gem::Version
|
20
|
-
version: 0.3
|
20
|
+
version: '0.3'
|
21
21
|
type: :runtime
|
22
22
|
prerelease: false
|
23
23
|
version_requirements: !ruby/object:Gem::Requirement
|
24
24
|
requirements:
|
25
25
|
- - "~>"
|
26
26
|
- !ruby/object:Gem::Version
|
27
|
-
version: 0.3
|
27
|
+
version: '0.3'
|
28
28
|
- !ruby/object:Gem::Dependency
|
29
29
|
name: dry-initializer
|
30
30
|
requirement: !ruby/object:Gem::Requirement
|
31
31
|
requirements:
|
32
32
|
- - "~>"
|
33
33
|
- !ruby/object:Gem::Version
|
34
|
-
version: '3.
|
34
|
+
version: '3.1'
|
35
35
|
type: :runtime
|
36
36
|
prerelease: false
|
37
37
|
version_requirements: !ruby/object:Gem::Requirement
|
38
38
|
requirements:
|
39
39
|
- - "~>"
|
40
40
|
- !ruby/object:Gem::Version
|
41
|
-
version: '3.
|
41
|
+
version: '3.1'
|
42
42
|
- !ruby/object:Gem::Dependency
|
43
43
|
name: faye
|
44
44
|
requirement: !ruby/object:Gem::Requirement
|
@@ -59,14 +59,14 @@ dependencies:
|
|
59
59
|
requirements:
|
60
60
|
- - "~>"
|
61
61
|
- !ruby/object:Gem::Version
|
62
|
-
version: '
|
62
|
+
version: '6.2'
|
63
63
|
type: :runtime
|
64
64
|
prerelease: false
|
65
65
|
version_requirements: !ruby/object:Gem::Requirement
|
66
66
|
requirements:
|
67
67
|
- - "~>"
|
68
68
|
- !ruby/object:Gem::Version
|
69
|
-
version: '
|
69
|
+
version: '6.2'
|
70
70
|
- !ruby/object:Gem::Dependency
|
71
71
|
name: eventmachine
|
72
72
|
requirement: !ruby/object:Gem::Requirement
|
@@ -81,104 +81,6 @@ dependencies:
|
|
81
81
|
- - "~>"
|
82
82
|
- !ruby/object:Gem::Version
|
83
83
|
version: '1.2'
|
84
|
-
- !ruby/object:Gem::Dependency
|
85
|
-
name: byebug
|
86
|
-
requirement: !ruby/object:Gem::Requirement
|
87
|
-
requirements:
|
88
|
-
- - ">="
|
89
|
-
- !ruby/object:Gem::Version
|
90
|
-
version: '0'
|
91
|
-
type: :development
|
92
|
-
prerelease: false
|
93
|
-
version_requirements: !ruby/object:Gem::Requirement
|
94
|
-
requirements:
|
95
|
-
- - ">="
|
96
|
-
- !ruby/object:Gem::Version
|
97
|
-
version: '0'
|
98
|
-
- !ruby/object:Gem::Dependency
|
99
|
-
name: codecov
|
100
|
-
requirement: !ruby/object:Gem::Requirement
|
101
|
-
requirements:
|
102
|
-
- - ">="
|
103
|
-
- !ruby/object:Gem::Version
|
104
|
-
version: '0'
|
105
|
-
type: :development
|
106
|
-
prerelease: false
|
107
|
-
version_requirements: !ruby/object:Gem::Requirement
|
108
|
-
requirements:
|
109
|
-
- - ">="
|
110
|
-
- !ruby/object:Gem::Version
|
111
|
-
version: '0'
|
112
|
-
- !ruby/object:Gem::Dependency
|
113
|
-
name: rake
|
114
|
-
requirement: !ruby/object:Gem::Requirement
|
115
|
-
requirements:
|
116
|
-
- - ">="
|
117
|
-
- !ruby/object:Gem::Version
|
118
|
-
version: '0'
|
119
|
-
type: :development
|
120
|
-
prerelease: false
|
121
|
-
version_requirements: !ruby/object:Gem::Requirement
|
122
|
-
requirements:
|
123
|
-
- - ">="
|
124
|
-
- !ruby/object:Gem::Version
|
125
|
-
version: '0'
|
126
|
-
- !ruby/object:Gem::Dependency
|
127
|
-
name: rspec
|
128
|
-
requirement: !ruby/object:Gem::Requirement
|
129
|
-
requirements:
|
130
|
-
- - ">="
|
131
|
-
- !ruby/object:Gem::Version
|
132
|
-
version: '0'
|
133
|
-
type: :development
|
134
|
-
prerelease: false
|
135
|
-
version_requirements: !ruby/object:Gem::Requirement
|
136
|
-
requirements:
|
137
|
-
- - ">="
|
138
|
-
- !ruby/object:Gem::Version
|
139
|
-
version: '0'
|
140
|
-
- !ruby/object:Gem::Dependency
|
141
|
-
name: rubocop
|
142
|
-
requirement: !ruby/object:Gem::Requirement
|
143
|
-
requirements:
|
144
|
-
- - ">="
|
145
|
-
- !ruby/object:Gem::Version
|
146
|
-
version: '0'
|
147
|
-
type: :development
|
148
|
-
prerelease: false
|
149
|
-
version_requirements: !ruby/object:Gem::Requirement
|
150
|
-
requirements:
|
151
|
-
- - ">="
|
152
|
-
- !ruby/object:Gem::Version
|
153
|
-
version: '0'
|
154
|
-
- !ruby/object:Gem::Dependency
|
155
|
-
name: rubocop-rake
|
156
|
-
requirement: !ruby/object:Gem::Requirement
|
157
|
-
requirements:
|
158
|
-
- - ">="
|
159
|
-
- !ruby/object:Gem::Version
|
160
|
-
version: '0'
|
161
|
-
type: :development
|
162
|
-
prerelease: false
|
163
|
-
version_requirements: !ruby/object:Gem::Requirement
|
164
|
-
requirements:
|
165
|
-
- - ">="
|
166
|
-
- !ruby/object:Gem::Version
|
167
|
-
version: '0'
|
168
|
-
- !ruby/object:Gem::Dependency
|
169
|
-
name: rubocop-rspec
|
170
|
-
requirement: !ruby/object:Gem::Requirement
|
171
|
-
requirements:
|
172
|
-
- - ">="
|
173
|
-
- !ruby/object:Gem::Version
|
174
|
-
version: '0'
|
175
|
-
type: :development
|
176
|
-
prerelease: false
|
177
|
-
version_requirements: !ruby/object:Gem::Requirement
|
178
|
-
requirements:
|
179
|
-
- - ">="
|
180
|
-
- !ruby/object:Gem::Version
|
181
|
-
version: '0'
|
182
84
|
description:
|
183
85
|
email:
|
184
86
|
- scott@renofi.com
|
@@ -195,6 +97,7 @@ files:
|
|
195
97
|
- ".github/ISSUE_TEMPLATE/story.md"
|
196
98
|
- ".github/PULL_REQUEST_TEMPLATE.md"
|
197
99
|
- ".github/workflows/auto-approve.yml"
|
100
|
+
- ".github/workflows/auto-merge-dependencies.yml"
|
198
101
|
- ".github/workflows/auto-merge.yml"
|
199
102
|
- ".github/workflows/ci.yml"
|
200
103
|
- ".gitignore"
|
@@ -202,7 +105,7 @@ files:
|
|
202
105
|
- CHANGELOG.md
|
203
106
|
- Gemfile
|
204
107
|
- Gemfile.lock
|
205
|
-
- LICENSE
|
108
|
+
- LICENSE
|
206
109
|
- README.md
|
207
110
|
- Rakefile
|
208
111
|
- exe/streamer
|
@@ -243,7 +146,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
243
146
|
- !ruby/object:Gem::Version
|
244
147
|
version: '0'
|
245
148
|
requirements: []
|
246
|
-
rubygems_version: 3.
|
149
|
+
rubygems_version: 3.4.17
|
247
150
|
signing_key:
|
248
151
|
specification_version: 4
|
249
152
|
summary: A wrapper around the Restforce Streaming API with a built-in PushTopic manager.
|