unique_job 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +9 -0
- data/.travis.yml +6 -0
- data/CODE_OF_CONDUCT.md +74 -0
- data/Gemfile +7 -0
- data/Gemfile.lock +33 -0
- data/LICENSE.txt +21 -0
- data/README.md +44 -0
- data/Rakefile +10 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/lib/unique_job.rb +4 -0
- data/lib/unique_job/client_middleware.rb +21 -0
- data/lib/unique_job/job_history.rb +65 -0
- data/lib/unique_job/server_middleware.rb +11 -0
- data/lib/unique_job/util.rb +79 -0
- data/lib/unique_job/version.rb +3 -0
- data/unique_job.gemspec +30 -0
- metadata +98 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: af33cb02d39f50c4d16316374ee2079b863505321370817e1df1a293d5b6674f
|
4
|
+
data.tar.gz: '02906948d9857c66215b6984ff2966e766bde452eb375f08c71f01739b3dbf25'
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 6e53fde574f9343471ccdbbf72a9a3562e4a8c95950968ea55f1cbb5f774989b8ab5f781dd129f299817d4e45dbfaa9fe4ae42b3aa9b5b86dd4475c4d6d6ab50
|
7
|
+
data.tar.gz: cd1f0aff1da071006a5c9c003882650bfb2d534b0c1bc455469fddfdc3de60b889e404ddb072426f155ea944315bcd88c9e0ecb24009b0e011fdd4c878b30347
|
data/.gitignore
ADDED
data/.travis.yml
ADDED
data/CODE_OF_CONDUCT.md
ADDED
@@ -0,0 +1,74 @@
|
|
1
|
+
# Contributor Covenant Code of Conduct
|
2
|
+
|
3
|
+
## Our Pledge
|
4
|
+
|
5
|
+
In the interest of fostering an open and welcoming environment, we as
|
6
|
+
contributors and maintainers pledge to making participation in our project and
|
7
|
+
our community a harassment-free experience for everyone, regardless of age, body
|
8
|
+
size, disability, ethnicity, gender identity and expression, level of experience,
|
9
|
+
nationality, personal appearance, race, religion, or sexual identity and
|
10
|
+
orientation.
|
11
|
+
|
12
|
+
## Our Standards
|
13
|
+
|
14
|
+
Examples of behavior that contributes to creating a positive environment
|
15
|
+
include:
|
16
|
+
|
17
|
+
* Using welcoming and inclusive language
|
18
|
+
* Being respectful of differing viewpoints and experiences
|
19
|
+
* Gracefully accepting constructive criticism
|
20
|
+
* Focusing on what is best for the community
|
21
|
+
* Showing empathy towards other community members
|
22
|
+
|
23
|
+
Examples of unacceptable behavior by participants include:
|
24
|
+
|
25
|
+
* The use of sexualized language or imagery and unwelcome sexual attention or
|
26
|
+
advances
|
27
|
+
* Trolling, insulting/derogatory comments, and personal or political attacks
|
28
|
+
* Public or private harassment
|
29
|
+
* Publishing others' private information, such as a physical or electronic
|
30
|
+
address, without explicit permission
|
31
|
+
* Other conduct which could reasonably be considered inappropriate in a
|
32
|
+
professional setting
|
33
|
+
|
34
|
+
## Our Responsibilities
|
35
|
+
|
36
|
+
Project maintainers are responsible for clarifying the standards of acceptable
|
37
|
+
behavior and are expected to take appropriate and fair corrective action in
|
38
|
+
response to any instances of unacceptable behavior.
|
39
|
+
|
40
|
+
Project maintainers have the right and responsibility to remove, edit, or
|
41
|
+
reject comments, commits, code, wiki edits, issues, and other contributions
|
42
|
+
that are not aligned to this Code of Conduct, or to ban temporarily or
|
43
|
+
permanently any contributor for other behaviors that they deem inappropriate,
|
44
|
+
threatening, offensive, or harmful.
|
45
|
+
|
46
|
+
## Scope
|
47
|
+
|
48
|
+
This Code of Conduct applies both within project spaces and in public spaces
|
49
|
+
when an individual is representing the project or its community. Examples of
|
50
|
+
representing a project or community include using an official project e-mail
|
51
|
+
address, posting via an official social media account, or acting as an appointed
|
52
|
+
representative at an online or offline event. Representation of a project may be
|
53
|
+
further defined and clarified by project maintainers.
|
54
|
+
|
55
|
+
## Enforcement
|
56
|
+
|
57
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
58
|
+
reported by contacting the project team at ts_3156@yahoo.co.jp. All
|
59
|
+
complaints will be reviewed and investigated and will result in a response that
|
60
|
+
is deemed necessary and appropriate to the circumstances. The project team is
|
61
|
+
obligated to maintain confidentiality with regard to the reporter of an incident.
|
62
|
+
Further details of specific enforcement policies may be posted separately.
|
63
|
+
|
64
|
+
Project maintainers who do not follow or enforce the Code of Conduct in good
|
65
|
+
faith may face temporary or permanent repercussions as determined by other
|
66
|
+
members of the project's leadership.
|
67
|
+
|
68
|
+
## Attribution
|
69
|
+
|
70
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
|
71
|
+
available at [https://contributor-covenant.org/version/1/4][version]
|
72
|
+
|
73
|
+
[homepage]: https://contributor-covenant.org
|
74
|
+
[version]: https://contributor-covenant.org/version/1/4/
|
data/Gemfile
ADDED
data/Gemfile.lock
ADDED
@@ -0,0 +1,33 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
unique_job (0.1.0)
|
5
|
+
redis
|
6
|
+
sidekiq (> 6.0, < 7.0)
|
7
|
+
|
8
|
+
GEM
|
9
|
+
remote: https://rubygems.org/
|
10
|
+
specs:
|
11
|
+
connection_pool (2.2.3)
|
12
|
+
minitest (5.11.3)
|
13
|
+
rack (2.2.2)
|
14
|
+
rack-protection (2.0.8.1)
|
15
|
+
rack
|
16
|
+
rake (12.3.2)
|
17
|
+
redis (4.2.1)
|
18
|
+
sidekiq (6.0.7)
|
19
|
+
connection_pool (>= 2.2.2)
|
20
|
+
rack (~> 2.0)
|
21
|
+
rack-protection (>= 2.0.0)
|
22
|
+
redis (>= 4.1.0)
|
23
|
+
|
24
|
+
PLATFORMS
|
25
|
+
ruby
|
26
|
+
|
27
|
+
DEPENDENCIES
|
28
|
+
minitest (~> 5.0)
|
29
|
+
rake (~> 12.0)
|
30
|
+
unique_job!
|
31
|
+
|
32
|
+
BUNDLED WITH
|
33
|
+
2.1.4
|
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2020 ts-3156
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,44 @@
|
|
1
|
+
# UniqueJob
|
2
|
+
|
3
|
+
Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/unique_job`. To experiment with that code, run `bin/console` for an interactive prompt.
|
4
|
+
|
5
|
+
TODO: Delete this and the text above, and describe your gem
|
6
|
+
|
7
|
+
## Installation
|
8
|
+
|
9
|
+
Add this line to your application's Gemfile:
|
10
|
+
|
11
|
+
```ruby
|
12
|
+
gem 'unique_job'
|
13
|
+
```
|
14
|
+
|
15
|
+
And then execute:
|
16
|
+
|
17
|
+
$ bundle install
|
18
|
+
|
19
|
+
Or install it yourself as:
|
20
|
+
|
21
|
+
$ gem install unique_job
|
22
|
+
|
23
|
+
## Usage
|
24
|
+
|
25
|
+
TODO: Write usage instructions here
|
26
|
+
|
27
|
+
## Development
|
28
|
+
|
29
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake test` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
30
|
+
|
31
|
+
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
32
|
+
|
33
|
+
## Contributing
|
34
|
+
|
35
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/unique_job. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/[USERNAME]/unique_job/blob/master/CODE_OF_CONDUCT.md).
|
36
|
+
|
37
|
+
|
38
|
+
## License
|
39
|
+
|
40
|
+
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
41
|
+
|
42
|
+
## Code of Conduct
|
43
|
+
|
44
|
+
Everyone interacting in the UniqueJob project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/unique_job/blob/master/CODE_OF_CONDUCT.md).
|
data/Rakefile
ADDED
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "unique_job"
|
5
|
+
|
6
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
7
|
+
# with your gem easier. You can also use a different console, if you like.
|
8
|
+
|
9
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
10
|
+
# require "pry"
|
11
|
+
# Pry.start
|
12
|
+
|
13
|
+
require "irb"
|
14
|
+
IRB.start(__FILE__)
|
data/bin/setup
ADDED
data/lib/unique_job.rb
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
require 'unique_job/util'
|
2
|
+
|
3
|
+
module UniqueJob
|
4
|
+
class ClientMiddleware
|
5
|
+
include Util
|
6
|
+
|
7
|
+
def call(worker_str, job, queue, redis_pool, &block)
|
8
|
+
if job.has_key?('at')
|
9
|
+
# perform_in or perform_at
|
10
|
+
yield
|
11
|
+
else
|
12
|
+
if worker_str.class == String
|
13
|
+
worker = worker_str.constantize.new # Sidekiq < 6
|
14
|
+
else
|
15
|
+
worker = worker_str.new
|
16
|
+
end
|
17
|
+
perform_if_unique(worker, job['args'], &block)
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
@@ -0,0 +1,65 @@
|
|
1
|
+
module UniqueJob
|
2
|
+
class JobHistory
|
3
|
+
def initialize(worker_class, queueing_class, ttl)
|
4
|
+
@key = "#{self.class}:#{queueing_class}:#{worker_class}"
|
5
|
+
@ttl = ttl
|
6
|
+
end
|
7
|
+
|
8
|
+
def ttl(val = nil)
|
9
|
+
if val
|
10
|
+
redis.ttl(key(val))
|
11
|
+
else
|
12
|
+
@ttl
|
13
|
+
end
|
14
|
+
end
|
15
|
+
|
16
|
+
def delete_all
|
17
|
+
redis.keys("#{@key}:*").each do |key|
|
18
|
+
redis.del(key)
|
19
|
+
end
|
20
|
+
end
|
21
|
+
|
22
|
+
def exists?(val)
|
23
|
+
redis.exists(key(val))
|
24
|
+
end
|
25
|
+
|
26
|
+
def add(val)
|
27
|
+
redis.setex(key(val), @ttl, true)
|
28
|
+
end
|
29
|
+
|
30
|
+
private
|
31
|
+
|
32
|
+
def key(val)
|
33
|
+
"#{@key}:#{val}"
|
34
|
+
end
|
35
|
+
|
36
|
+
def redis
|
37
|
+
self.class.redis
|
38
|
+
end
|
39
|
+
|
40
|
+
class << self
|
41
|
+
def redis
|
42
|
+
@redis ||= Redis.client(ENV['REDIS_HOST'])
|
43
|
+
end
|
44
|
+
end
|
45
|
+
|
46
|
+
module RescueAllRedisErrors
|
47
|
+
%i(
|
48
|
+
ttl
|
49
|
+
exists?
|
50
|
+
add
|
51
|
+
).each do |method_name|
|
52
|
+
define_method(method_name) do |*args, &blk|
|
53
|
+
start = Time.zone.now
|
54
|
+
super(*args, &blk)
|
55
|
+
rescue => e
|
56
|
+
elapsed = Time.zone.now - start
|
57
|
+
Rails.logger.warn "Rescue all errors in #{self.class}##{method_name} #{e.inspect} elapsed=#{sprintf("%.3f sec", elapsed)}"
|
58
|
+
Rails.logger.debug { e.backtrace.join("\n") }
|
59
|
+
nil
|
60
|
+
end
|
61
|
+
end
|
62
|
+
end
|
63
|
+
prepend RescueAllRedisErrors
|
64
|
+
end
|
65
|
+
end
|
@@ -0,0 +1,79 @@
|
|
1
|
+
module UniqueJob
|
2
|
+
module Util
|
3
|
+
def perform_if_unique(worker, args, &block)
|
4
|
+
if worker.respond_to?(:unique_key)
|
5
|
+
unique_key = worker.unique_key(*args)
|
6
|
+
|
7
|
+
if unique_key.nil? || unique_key.to_s.empty?
|
8
|
+
logger.warn { "#{class_name}##{__method__} Key is blank worker=#{worker.class} args=#{truncate(args.inspect)}" }
|
9
|
+
yield
|
10
|
+
elsif perform_unique_check(worker, args, unique_key.to_s)
|
11
|
+
yield
|
12
|
+
end
|
13
|
+
else
|
14
|
+
yield
|
15
|
+
end
|
16
|
+
end
|
17
|
+
|
18
|
+
def perform_unique_check(worker, args, unique_key)
|
19
|
+
history = job_history(worker)
|
20
|
+
|
21
|
+
if history.exists?(unique_key)
|
22
|
+
logger.info { "#{class_name}##{__method__} Skip duplicate job for #{history.ttl} seconds, remaining #{history.ttl(unique_key)} seconds worker=#{worker.class} args=#{truncate(args.inspect)}" }
|
23
|
+
|
24
|
+
perform_callback(worker, :after_skip, args)
|
25
|
+
|
26
|
+
false
|
27
|
+
else
|
28
|
+
history.add(unique_key)
|
29
|
+
true
|
30
|
+
end
|
31
|
+
end
|
32
|
+
|
33
|
+
def job_history(worker)
|
34
|
+
ttl = worker.respond_to?(:unique_in) ? worker.unique_in : 3600
|
35
|
+
JobHistory.new(worker.class, class_name, ttl)
|
36
|
+
end
|
37
|
+
|
38
|
+
def truncate(text, length: 100)
|
39
|
+
if text.length > length
|
40
|
+
text.slice(0, length)
|
41
|
+
else
|
42
|
+
text
|
43
|
+
end
|
44
|
+
end
|
45
|
+
|
46
|
+
def perform_callback(worker, callback_name, args)
|
47
|
+
if worker.respond_to?(callback_name)
|
48
|
+
parameters = worker.method(callback_name).parameters
|
49
|
+
|
50
|
+
begin
|
51
|
+
if parameters.empty?
|
52
|
+
worker.send(callback_name)
|
53
|
+
else
|
54
|
+
worker.send(callback_name, *args)
|
55
|
+
end
|
56
|
+
rescue ArgumentError => e
|
57
|
+
message = "The number of parameters of the callback method (#{parameters.size}) is not the same as the number of arguments (#{args.size})"
|
58
|
+
raise ArgumentError.new("#{self.class}:#{worker.class} #{message} callback_name=#{callback_name} args=#{args.inspect} parameters=#{parameters.inspect}")
|
59
|
+
end
|
60
|
+
end
|
61
|
+
end
|
62
|
+
|
63
|
+
def class_name
|
64
|
+
self.class.name.demodulize
|
65
|
+
end
|
66
|
+
|
67
|
+
def logger
|
68
|
+
if File.basename($0) == 'rake'
|
69
|
+
Logger.new(STDOUT, level: Logger::WARN)
|
70
|
+
elsif defined?(Sidekiq)
|
71
|
+
Sidekiq.logger
|
72
|
+
elsif defined?(Rails)
|
73
|
+
Rails.logger
|
74
|
+
else
|
75
|
+
Logger.new(STDOUT, level: Logger::WARN)
|
76
|
+
end
|
77
|
+
end
|
78
|
+
end
|
79
|
+
end
|
data/unique_job.gemspec
ADDED
@@ -0,0 +1,30 @@
|
|
1
|
+
require_relative 'lib/unique_job/version'
|
2
|
+
|
3
|
+
Gem::Specification.new do |spec|
|
4
|
+
spec.name = "unique_job"
|
5
|
+
spec.version = UniqueJob::VERSION
|
6
|
+
spec.authors = ["ts-3156"]
|
7
|
+
spec.email = ["ts_3156@yahoo.co.jp"]
|
8
|
+
|
9
|
+
spec.summary = "Set a uniqueness to Sidekiq jobs"
|
10
|
+
spec.description = spec.summary
|
11
|
+
spec.homepage = "https://github.com/egotter/unique_job"
|
12
|
+
spec.license = "MIT"
|
13
|
+
spec.required_ruby_version = Gem::Requirement.new(">= 2.3.0")
|
14
|
+
|
15
|
+
spec.metadata["homepage_uri"] = spec.homepage
|
16
|
+
spec.metadata["source_code_uri"] = "https://github.com/egotter/unique_job"
|
17
|
+
spec.metadata["changelog_uri"] = "https://github.com/egotter/unique_job"
|
18
|
+
|
19
|
+
# Specify which files should be added to the gem when it is released.
|
20
|
+
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
21
|
+
spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
|
22
|
+
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
23
|
+
end
|
24
|
+
spec.bindir = "exe"
|
25
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
26
|
+
spec.require_paths = ["lib"]
|
27
|
+
|
28
|
+
spec.add_dependency "sidekiq", ["> 6.0", "< 7.0"]
|
29
|
+
spec.add_dependency "redis"
|
30
|
+
end
|
metadata
ADDED
@@ -0,0 +1,98 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: unique_job
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- ts-3156
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2020-06-14 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: sidekiq
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ">"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '6.0'
|
20
|
+
- - "<"
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: '7.0'
|
23
|
+
type: :runtime
|
24
|
+
prerelease: false
|
25
|
+
version_requirements: !ruby/object:Gem::Requirement
|
26
|
+
requirements:
|
27
|
+
- - ">"
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '6.0'
|
30
|
+
- - "<"
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: '7.0'
|
33
|
+
- !ruby/object:Gem::Dependency
|
34
|
+
name: redis
|
35
|
+
requirement: !ruby/object:Gem::Requirement
|
36
|
+
requirements:
|
37
|
+
- - ">="
|
38
|
+
- !ruby/object:Gem::Version
|
39
|
+
version: '0'
|
40
|
+
type: :runtime
|
41
|
+
prerelease: false
|
42
|
+
version_requirements: !ruby/object:Gem::Requirement
|
43
|
+
requirements:
|
44
|
+
- - ">="
|
45
|
+
- !ruby/object:Gem::Version
|
46
|
+
version: '0'
|
47
|
+
description: Set a uniqueness to Sidekiq jobs
|
48
|
+
email:
|
49
|
+
- ts_3156@yahoo.co.jp
|
50
|
+
executables: []
|
51
|
+
extensions: []
|
52
|
+
extra_rdoc_files: []
|
53
|
+
files:
|
54
|
+
- ".gitignore"
|
55
|
+
- ".travis.yml"
|
56
|
+
- CODE_OF_CONDUCT.md
|
57
|
+
- Gemfile
|
58
|
+
- Gemfile.lock
|
59
|
+
- LICENSE.txt
|
60
|
+
- README.md
|
61
|
+
- Rakefile
|
62
|
+
- bin/console
|
63
|
+
- bin/setup
|
64
|
+
- lib/unique_job.rb
|
65
|
+
- lib/unique_job/client_middleware.rb
|
66
|
+
- lib/unique_job/job_history.rb
|
67
|
+
- lib/unique_job/server_middleware.rb
|
68
|
+
- lib/unique_job/util.rb
|
69
|
+
- lib/unique_job/version.rb
|
70
|
+
- unique_job.gemspec
|
71
|
+
homepage: https://github.com/egotter/unique_job
|
72
|
+
licenses:
|
73
|
+
- MIT
|
74
|
+
metadata:
|
75
|
+
homepage_uri: https://github.com/egotter/unique_job
|
76
|
+
source_code_uri: https://github.com/egotter/unique_job
|
77
|
+
changelog_uri: https://github.com/egotter/unique_job
|
78
|
+
post_install_message:
|
79
|
+
rdoc_options: []
|
80
|
+
require_paths:
|
81
|
+
- lib
|
82
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
83
|
+
requirements:
|
84
|
+
- - ">="
|
85
|
+
- !ruby/object:Gem::Version
|
86
|
+
version: 2.3.0
|
87
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
88
|
+
requirements:
|
89
|
+
- - ">="
|
90
|
+
- !ruby/object:Gem::Version
|
91
|
+
version: '0'
|
92
|
+
requirements: []
|
93
|
+
rubyforge_project:
|
94
|
+
rubygems_version: 2.7.6
|
95
|
+
signing_key:
|
96
|
+
specification_version: 4
|
97
|
+
summary: Set a uniqueness to Sidekiq jobs
|
98
|
+
test_files: []
|