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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e4da5c91348c8e894a37d4c8d260160cb5d7bbca55a30fe1f69f99c333f349c8
4
- data.tar.gz: ddde902f582ec54278f70ca149b98574476fd6e39b40e9755c1d87c8bbbe7af2
3
+ metadata.gz: 0af37030278601f044ca91d96e56532ad705ad18828c827f8f0b34da96f88552
4
+ data.tar.gz: dca90db2500b29b5e53945f26539d1a7649e00b62219889a1bf88170fbdff605
5
5
  SHA512:
6
- metadata.gz: 282b4a5e12f6dcbf3039c6402356f53f3c3a2eaa6fedfa8102a535c5ef75a6b38e9d7296e47dad9b66c686ff8c232d34bf2d20c83bbfc143fb070314d244501a
7
- data.tar.gz: 041ffe4a0f9fa508b4e059c461efe2dffbc5d216c8f56e72c1afc54e36e863c60f275e3086e2df964e1fa101cef8d70716379be84f2fb354d4f1f4d6853c615a
6
+ metadata.gz: 8e23cdf44d612242861ffd19aa0f8fe20a1d94f9d7db31679053a2bc99ced913bb9653c9b5a0fa29bbf937eefa2c6d3b25ca785d4f33bf456bb5ceabbe35b667
7
+ data.tar.gz: 51e1d5d408aa015cf19f49d27eb9d39a3dce27030191123df0ee6a49cb84447940701512a040e9972427f9f4749f0812d0e024c433735941d162819b38ea0f51
@@ -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
@@ -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.1.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).
@@ -0,0 +1,2 @@
1
+ require 'reliable_queue_rb/reliable_queue'
2
+ require 'reliable_queue_rb/chunked_reliable_queue'
@@ -1,5 +1,5 @@
1
- require 'chunked_reliable_queue'
2
- require "redis"
1
+ require 'reliable_queue_rb/chunked_reliable_queue'
2
+ require 'redis'
3
3
 
4
4
  RSpec.describe ChunkedReliableQueue do
5
5
  let(:redis) { Redis.new }
@@ -1,5 +1,5 @@
1
- require 'reliable_queue'
2
- require "redis"
1
+ require 'reliable_queue_rb/reliable_queue'
2
+ require 'redis'
3
3
 
4
4
  RSpec.describe ReliableQueue do
5
5
  let(:redis) { Redis.new }
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.1.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-15 00:00:00.000000000 Z
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/chunked_reliable_queue.rb
67
- - lib/reliable_queue.rb
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.0.6
90
+ rubygems_version: 3.1.2
90
91
  signing_key:
91
92
  specification_version: 4
92
93
  summary: Ruby library for reliable queue processing.