salesforce_streamer 0.5.0 → 1.0.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/.travis.yml +1 -1
- data/Gemfile.lock +4 -4
- data/lib/salesforce_streamer/version.rb +1 -1
- data/salesforce_streamer.gemspec +3 -1
- metadata +3 -7
- data/.rubocop.yml +0 -8
- data/.ruby-version +0 -1
- data/bin/console +0 -13
- data/bin/setup +0 -8
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d5e2582707019a2ad77778663906efc1a96651a6792116cf69d56b3f92368354
|
|
4
|
+
data.tar.gz: 3f9184668544c0a244ee2ef1ef4ffb7b8ac1af49da1bc5be09facbe51104af53
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3876250efad33dd431927a273d9409a6beec6be2783bbf73cdd297c32f0992eecd9d7562ba8dcb5cd8e1b0c857b9000323dc37a32d2c72a44b1d74bbb7719bb3
|
|
7
|
+
data.tar.gz: f31654f617c2e21f12d3b09a8f7c5cddfcacc6fee984e9a8199b632e757ff1c6d6fbca2932d02b265dceeec5ef35ec3098ceb539c96308b884b410d5f97f8981
|
data/.travis.yml
CHANGED
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
salesforce_streamer (0.
|
|
4
|
+
salesforce_streamer (1.0.0)
|
|
5
5
|
faye (= 0.8.9)
|
|
6
6
|
restforce (~> 4.2)
|
|
7
7
|
|
|
@@ -45,14 +45,14 @@ GEM
|
|
|
45
45
|
hashie (4.0.0)
|
|
46
46
|
http_parser.rb (0.6.0)
|
|
47
47
|
jaro_winkler (1.5.4)
|
|
48
|
-
json (2.
|
|
48
|
+
json (2.3.0)
|
|
49
49
|
jwt (2.2.1)
|
|
50
50
|
multipart-post (2.1.1)
|
|
51
51
|
parallel (1.19.1)
|
|
52
52
|
parser (2.6.5.0)
|
|
53
53
|
ast (~> 2.4.0)
|
|
54
54
|
public_suffix (4.0.1)
|
|
55
|
-
rack (2.0.
|
|
55
|
+
rack (2.0.8)
|
|
56
56
|
rainbow (3.0.0)
|
|
57
57
|
rake (13.0.1)
|
|
58
58
|
restforce (4.2.1)
|
|
@@ -74,7 +74,7 @@ GEM
|
|
|
74
74
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
75
75
|
rspec-support (~> 3.9.0)
|
|
76
76
|
rspec-support (3.9.0)
|
|
77
|
-
rubocop (0.
|
|
77
|
+
rubocop (0.78.0)
|
|
78
78
|
jaro_winkler (~> 1.5.1)
|
|
79
79
|
parallel (~> 1.10)
|
|
80
80
|
parser (>= 2.6)
|
data/salesforce_streamer.gemspec
CHANGED
|
@@ -16,12 +16,14 @@ Gem::Specification.new do |spec|
|
|
|
16
16
|
spec.metadata['source_code_uri'] = spec.homepage
|
|
17
17
|
|
|
18
18
|
spec.files = Dir.chdir(File.expand_path(__dir__)) do
|
|
19
|
-
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(
|
|
19
|
+
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(bin/|spec/|\.rub)}) }
|
|
20
20
|
end
|
|
21
21
|
spec.bindir = 'exe'
|
|
22
22
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
|
23
23
|
spec.require_paths = ['lib']
|
|
24
24
|
|
|
25
|
+
spec.required_ruby_version = '>= 2.5'
|
|
26
|
+
|
|
25
27
|
spec.add_dependency 'faye', '0.8.9'
|
|
26
28
|
spec.add_dependency 'restforce', '~> 4.2'
|
|
27
29
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: salesforce_streamer
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 1.0.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Scott Serok
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-12-
|
|
11
|
+
date: 2019-12-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: faye
|
|
@@ -132,8 +132,6 @@ extra_rdoc_files: []
|
|
|
132
132
|
files:
|
|
133
133
|
- ".gitignore"
|
|
134
134
|
- ".rspec"
|
|
135
|
-
- ".rubocop.yml"
|
|
136
|
-
- ".ruby-version"
|
|
137
135
|
- ".travis.yml"
|
|
138
136
|
- CODE_OF_CONDUCT.md
|
|
139
137
|
- Gemfile
|
|
@@ -141,8 +139,6 @@ files:
|
|
|
141
139
|
- LICENSE.txt
|
|
142
140
|
- README.md
|
|
143
141
|
- Rakefile
|
|
144
|
-
- bin/console
|
|
145
|
-
- bin/setup
|
|
146
142
|
- exe/streamer
|
|
147
143
|
- lib/core_extensions/cookiejar/cookie_validation.rb
|
|
148
144
|
- lib/salesforce_streamer.rb
|
|
@@ -175,7 +171,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
175
171
|
requirements:
|
|
176
172
|
- - ">="
|
|
177
173
|
- !ruby/object:Gem::Version
|
|
178
|
-
version: '
|
|
174
|
+
version: '2.5'
|
|
179
175
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
180
176
|
requirements:
|
|
181
177
|
- - ">="
|
data/.rubocop.yml
DELETED
data/.ruby-version
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
2.6.5
|
data/bin/console
DELETED
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
#!/usr/bin/env ruby
|
|
2
|
-
require 'bundler/setup'
|
|
3
|
-
require 'salesforce_streamer'
|
|
4
|
-
|
|
5
|
-
# You can add fixtures and/or initialization code here to make experimenting
|
|
6
|
-
# with your gem easier. You can also use a different console, if you like.
|
|
7
|
-
|
|
8
|
-
# (If you use this, don't forget to add pry to your Gemfile!)
|
|
9
|
-
# require "pry"
|
|
10
|
-
# Pry.start
|
|
11
|
-
|
|
12
|
-
require 'irb'
|
|
13
|
-
IRB.start(__FILE__)
|