-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprotocol-content.gemspec
More file actions
34 lines (25 loc) · 1.16 KB
/
Copy pathprotocol-content.gemspec
File metadata and controls
34 lines (25 loc) · 1.16 KB
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
29
30
31
32
33
34
# frozen_string_literal: true
require_relative "lib/protocol/content/version"
Gem::Specification.new do |spec|
spec.name = "protocol-content"
spec.version = Protocol::Content::VERSION
spec.summary = "Provides parsing for media-typed content."
spec.authors = ["Samuel Williams"]
spec.license = "MIT"
spec.cert_chain = ["release.cert"]
spec.signing_key = File.expand_path("~/.gem/release.pem")
spec.homepage = "https://github.com/socketry/protocol-content"
spec.metadata = {
"bug_tracker_uri" => "https://github.com/socketry/protocol-content/issues",
"changelog_uri" => "https://github.com/socketry/protocol-content/blob/main/releases.md",
"documentation_uri" => "https://socketry.github.io/protocol-content/",
"source_code_uri" => "https://github.com/socketry/protocol-content.git",
}
spec.files = Dir.glob(["{lib}/**/*", "*.md"], File::FNM_DOTMATCH, base: __dir__)
spec.required_ruby_version = ">= 3.3"
spec.add_dependency "json", "~> 2.0"
spec.add_dependency "protocol-media", "~> 0.2"
spec.add_dependency "protocol-media-registry", "~> 0.1"
spec.add_dependency "protocol-multipart", "~> 0.7"
spec.add_dependency "protocol-url", "~> 0.10"
end