-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtana.gemspec
38 lines (33 loc) · 1.37 KB
/
tana.gemspec
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
35
36
37
38
# frozen_string_literal: true
Gem::Specification.new do |spec|
spec.name = "tana"
spec.version = "0.15.0"
spec.authors = ["Brooke Kuhlmann"]
spec.email = ["brooke@alchemists.io"]
spec.homepage = "https://alchemists.io/projects/tana"
spec.summary = "A monadic API client for the Tana Personal Knowledge Management system."
spec.license = "Hippocratic-2.1"
spec.metadata = {
"bug_tracker_uri" => "https://github.com/bkuhlmann/tana/issues",
"changelog_uri" => "https://alchemists.io/projects/tana/versions",
"homepage_uri" => "https://alchemists.io/projects/tana",
"funding_uri" => "https://github.com/sponsors/bkuhlmann",
"label" => "Tana",
"rubygems_mfa_required" => "true",
"source_code_uri" => "https://github.com/bkuhlmann/tana"
}
spec.signing_key = Gem.default_key_path
spec.cert_chain = [Gem.default_cert_path]
spec.required_ruby_version = "~> 3.4"
spec.add_dependency "containable", "~> 1.1"
spec.add_dependency "core", "~> 2.0"
spec.add_dependency "dry-monads", "~> 1.6"
spec.add_dependency "dry-validation", "~> 1.10"
spec.add_dependency "http", "~> 5.2"
spec.add_dependency "infusible", "~> 4.0"
spec.add_dependency "pipeable", "~> 1.1"
spec.add_dependency "refinements", "~> 13.0"
spec.add_dependency "zeitwerk", "~> 2.7"
spec.extra_rdoc_files = Dir["README*", "LICENSE*"]
spec.files = Dir["*.gemspec", "lib/**/*"]
end