riverqueue 0.9.0 → 0.10.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/client.rb +2 -2
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f2dbda295844d75e3de51e970987435b2e6da80a302ec48fa34144d40a2606bc
|
|
4
|
+
data.tar.gz: 2aee2a95b12f7029298fbea275f6e100cd8cc3c7fe1662245403636e2bf2d572
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: cdfd97ffda4a7b2b4794796d0fa182da4ebc5c8a499008e1203abc273dc1747801dd0a33d70cf5c7298e9ce8bf193f5359433d1f888fe02af7d81f41bad6e28a
|
|
7
|
+
data.tar.gz: 88600ff5f0ab9aea098ad42dfe39846acf3365802dc2835c34dbd92ecdfbb6660941df5fb0bfdebe83f3e842c42e49b71dd3b604522a38b64c915b7df435b116
|
data/lib/client.rb
CHANGED
|
@@ -129,7 +129,7 @@ module River
|
|
|
129
129
|
|
|
130
130
|
@driver.job_insert_many(all_params)
|
|
131
131
|
.map do |job, unique_skipped_as_duplicate|
|
|
132
|
-
|
|
132
|
+
InsertResult.new(job, unique_skipped_as_duplicated: unique_skipped_as_duplicate)
|
|
133
133
|
end
|
|
134
134
|
end
|
|
135
135
|
|
|
@@ -249,7 +249,7 @@ module River
|
|
|
249
249
|
[int].pack("Q").unpack1("q") #: Integer # rubocop:disable Layout/LeadingCommentSpace
|
|
250
250
|
end
|
|
251
251
|
|
|
252
|
-
TAG_RE = /\A
|
|
252
|
+
TAG_RE = /\A\w[\w-]+\w\z/
|
|
253
253
|
private_constant :TAG_RE
|
|
254
254
|
|
|
255
255
|
private def validate_tags(tags)
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: riverqueue
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.10.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Blake Gentry
|
|
8
8
|
- Brandur Leach
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: River is a fast job queue for Go. Use this gem in conjunction with gems
|
|
14
14
|
riverqueue-activerecord or riverqueue-sequel to insert jobs in Ruby which will be
|
|
@@ -46,7 +46,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
46
46
|
- !ruby/object:Gem::Version
|
|
47
47
|
version: '0'
|
|
48
48
|
requirements: []
|
|
49
|
-
rubygems_version:
|
|
49
|
+
rubygems_version: 4.0.9
|
|
50
50
|
specification_version: 4
|
|
51
51
|
summary: River is a fast job queue for Go.
|
|
52
52
|
test_files: []
|