-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathutopia-project.gemspec
More file actions
34 lines (25 loc) · 1.11 KB
/
utopia-project.gemspec
File metadata and controls
34 lines (25 loc) · 1.11 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/utopia/project/version"
Gem::Specification.new do |spec|
spec.name = "utopia-project"
spec.version = Utopia::Project::VERSION
spec.summary = "A project documentation tool based on Utopia."
spec.authors = ["Samuel Williams", "Olle Jonsson", "dependabot[bot]", "Michael Adams"]
spec.license = "MIT"
spec.cert_chain = ["release.cert"]
spec.signing_key = File.expand_path("~/.gem/release.pem")
spec.homepage = "https://socketry.github.io/utopia-project"
spec.metadata = {
"documentation_uri" => "https://socketry.github.io/utopia-project/",
"funding_uri" => "https://github.com/sponsors/ioquatix/",
"source_code_uri" => "https://github.com/socketry/utopia-project/",
}
spec.files = Dir.glob(["{bake,context,lib,pages,public,template}/**/*", "*.md"], File::FNM_DOTMATCH, base: __dir__)
spec.required_ruby_version = ">= 3.2"
spec.add_dependency "decode", "~> 0.26"
spec.add_dependency "falcon"
spec.add_dependency "markly", "~> 0.15"
spec.add_dependency "rackula", "~> 1.3"
spec.add_dependency "thread-local"
spec.add_dependency "utopia", "~> 2.32"
end