-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathsidekiq-iteration.gemspec
More file actions
24 lines (18 loc) · 881 Bytes
/
Copy pathsidekiq-iteration.gemspec
File metadata and controls
24 lines (18 loc) · 881 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# frozen_string_literal: true
require_relative "lib/sidekiq_iteration/version"
Gem::Specification.new do |spec|
spec.name = "sidekiq-iteration"
spec.version = SidekiqIteration::VERSION
spec.authors = ["fatkodima", "Shopify"]
spec.email = ["fatkodima123@gmail.com"]
spec.summary = "Makes your long-running sidekiq jobs interruptible and resumable."
spec.homepage = "https://github.com/fatkodima/sidekiq-iteration"
spec.license = "MIT"
spec.required_ruby_version = Gem::Requirement.new(">= 2.7.0")
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = spec.homepage
spec.metadata["changelog_uri"] = "#{spec.homepage}/blob/master/CHANGELOG.md"
spec.files = Dir["*.{md,txt}", "{lib,guides}/**/*"]
spec.require_paths = ["lib"]
spec.add_dependency "sidekiq", ">= 6.0"
end