-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathasync-limiter.gemspec
More file actions
28 lines (19 loc) · 829 Bytes
/
async-limiter.gemspec
File metadata and controls
28 lines (19 loc) · 829 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
25
26
27
28
# frozen_string_literal: true
require_relative "lib/async/limiter/version"
Gem::Specification.new do |spec|
spec.name = "async-limiter"
spec.version = Async::Limiter::VERSION
spec.summary = "Execution rate limiting for Async"
spec.authors = ["Bruno Sutic", "Shopify Inc.", "Samuel Williams", "Francisco Mejia", "William"]
spec.license = "MIT"
spec.cert_chain = ["release.cert"]
spec.signing_key = File.expand_path("~/.gem/release.pem")
spec.homepage = "https://github.com/bruno-/async-limiter"
spec.metadata = {
"documentation_uri" => "https://socketry.github.io/async-limiter/",
"source_code_uri" => "https://github.com/socketry/async-limiter.git",
}
spec.files = Dir["{context,lib}/**/*", "*.md", base: __dir__]
spec.required_ruby_version = ">= 3.2"
spec.add_dependency "async", ">= 2.31"
end