reliable-queue-rb 0.1.0 → 0.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -1
- data/LICENSE.txt +1 -1
- data/README.md +2 -2
- data/lib/reliable-queue-rb.rb +2 -0
- data/lib/{chunked_reliable_queue.rb → reliable_queue_rb/chunked_reliable_queue.rb} +0 -0
- data/lib/{reliable_queue.rb → reliable_queue_rb/reliable_queue.rb} +0 -0
- data/spec/chunked_reliable_queue_spec.rb +2 -2
- data/spec/reliable_queue_spec.rb +2 -2
- metadata +6 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0af37030278601f044ca91d96e56532ad705ad18828c827f8f0b34da96f88552
|
4
|
+
data.tar.gz: dca90db2500b29b5e53945f26539d1a7649e00b62219889a1bf88170fbdff605
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8e23cdf44d612242861ffd19aa0f8fe20a1d94f9d7db31679053a2bc99ced913bb9653c9b5a0fa29bbf937eefa2c6d3b25ca785d4f33bf456bb5ceabbe35b667
|
7
|
+
data.tar.gz: 51e1d5d408aa015cf19f49d27eb9d39a3dce27030191123df0ee6a49cb84447940701512a040e9972427f9f4749f0812d0e024c433735941d162819b38ea0f51
|
data/CHANGELOG.md
CHANGED
@@ -2,6 +2,10 @@
|
|
2
2
|
All notable changes to this project will be documented in this file. This
|
3
3
|
project adheres to [Semantic Versioning](http://semver.org/).
|
4
4
|
|
5
|
+
## [0.2.0] - 2020-12-16
|
6
|
+
### Changed
|
7
|
+
- A single require for both classes
|
8
|
+
|
5
9
|
## [0.1.0] - 2020-12-14
|
6
10
|
### Added
|
7
|
-
- Initial release
|
11
|
+
- Initial release
|
data/LICENSE.txt
CHANGED
@@ -18,4 +18,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
18
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
19
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
20
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
-
THE SOFTWARE.
|
21
|
+
THE SOFTWARE.
|
data/README.md
CHANGED
@@ -7,7 +7,7 @@ Ruby reliable queue implementation on top of Redis. It makes sure that message i
|
|
7
7
|
Add this line to your application's `Gemfile`:
|
8
8
|
|
9
9
|
```ruby
|
10
|
-
gem 'reliable-queue-rb', '~> 0.
|
10
|
+
gem 'reliable-queue-rb', '~> 0.2.0'
|
11
11
|
```
|
12
12
|
|
13
13
|
And then execute:
|
@@ -45,4 +45,4 @@ Bug reports and pull requests are welcome on GitHub at https://github.com/altmet
|
|
45
45
|
|
46
46
|
Copyright © 2020-2021 Altmetric LLP
|
47
47
|
|
48
|
-
Distributed under the [MIT License](http://opensource.org/licenses/MIT).
|
48
|
+
Distributed under the [MIT License](http://opensource.org/licenses/MIT).
|
File without changes
|
File without changes
|
data/spec/reliable_queue_spec.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: reliable-queue-rb
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Anna Klimas
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2020-12-
|
12
|
+
date: 2020-12-17 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: redis
|
@@ -63,8 +63,9 @@ files:
|
|
63
63
|
- CHANGELOG.md
|
64
64
|
- LICENSE.txt
|
65
65
|
- README.md
|
66
|
-
- lib/
|
67
|
-
- lib/
|
66
|
+
- lib/reliable-queue-rb.rb
|
67
|
+
- lib/reliable_queue_rb/chunked_reliable_queue.rb
|
68
|
+
- lib/reliable_queue_rb/reliable_queue.rb
|
68
69
|
- spec/chunked_reliable_queue_spec.rb
|
69
70
|
- spec/reliable_queue_spec.rb
|
70
71
|
homepage: https://github.com/altmetric/reliable-queue-rb
|
@@ -86,7 +87,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
86
87
|
- !ruby/object:Gem::Version
|
87
88
|
version: '0'
|
88
89
|
requirements: []
|
89
|
-
rubygems_version: 3.
|
90
|
+
rubygems_version: 3.1.2
|
90
91
|
signing_key:
|
91
92
|
specification_version: 4
|
92
93
|
summary: Ruby library for reliable queue processing.
|