multi_op_queue 0.2.0 → 0.3.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
  SHA1:
3
- metadata.gz: 2aafd43910b87eca98e148c99c6df5664b3834ea
4
- data.tar.gz: 9a4407fbc1fb19f3e7b5a667401ca19c0310d3e8
3
+ metadata.gz: 7c10edfe6694688ce034a4263048df9cfcee363a
4
+ data.tar.gz: 54d5c54fbe0d7a7b63ec40775f0b6746dafd5b8a
5
5
  SHA512:
6
- metadata.gz: 548c845961b3ab2ec2b4ede603e6df84211020d5a1887f80b679c814a333e628feab8395406d6b7d8933158ab4b3d0b778b92f47a0b24c9ee204dcb0b28abba8
7
- data.tar.gz: 30fe3e620a3660126aaefdcd85f55291306a013d0b3b7b05994cc784bf8a86eeed58e220942598cf598f48ab285f2db47b2aaa026b532b36952d0849331af676
6
+ metadata.gz: 40b9cfbaef3f186dbfd7f76bf9cd8385411934858f450ea0b29b325f54bd63cc66d6a5459a4f45c7b09f4560cc6652ce95a301cf8e7054a27d2d8dce7e2e60ed
7
+ data.tar.gz: 127340376ace59e2962540745a3f89198cda909db72067786ecc11f6bfe0a2255545c0d81c4eac182864a25704ff8c3d7abeb068d2a74d9b80accec491f9b713
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2017 Brandon Dewitt
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -1,3 +1,3 @@
1
1
  module MultiOpQueue
2
- VERSION = "0.2.0"
2
+ VERSION = "0.3.0"
3
3
  end
@@ -12,6 +12,7 @@ Gem::Specification.new do |spec|
12
12
  spec.summary = %q{ allow multi-op calls on Queue while holding lock }
13
13
  spec.description = %q{ take default Queue from Ruby and allow multiple operations while holding lock }
14
14
  spec.homepage = "https://github.com/abrandoned/multi_op_queue"
15
+ spec.license = "MIT"
15
16
 
16
17
  # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
17
18
  # to allow pushing to a single host or delete this section to allow pushing to any host.
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: multi_op_queue
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brandon Dewitt
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2017-12-14 00:00:00.000000000 Z
11
+ date: 2018-10-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -91,6 +91,7 @@ files:
91
91
  - ".gitignore"
92
92
  - ".travis.yml"
93
93
  - Gemfile
94
+ - LICENSE.txt
94
95
  - README.md
95
96
  - Rakefile
96
97
  - bin/console
@@ -99,7 +100,8 @@ files:
99
100
  - lib/multi_op_queue/version.rb
100
101
  - multi_op_queue.gemspec
101
102
  homepage: https://github.com/abrandoned/multi_op_queue
102
- licenses: []
103
+ licenses:
104
+ - MIT
103
105
  metadata:
104
106
  allowed_push_host: https://rubygems.org
105
107
  post_install_message:
@@ -118,7 +120,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
118
120
  version: '0'
119
121
  requirements: []
120
122
  rubyforge_project:
121
- rubygems_version: 2.6.13
123
+ rubygems_version: 2.6.14
122
124
  signing_key:
123
125
  specification_version: 4
124
126
  summary: allow multi-op calls on Queue while holding lock