-
Notifications
You must be signed in to change notification settings - Fork 2
/
hanami-db.gemspec
30 lines (25 loc) · 1015 Bytes
/
hanami-db.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
# frozen_string_literal: true
require_relative "lib/hanami/db/version"
Gem::Specification.new do |spec|
spec.name = "hanami-db"
spec.version = Hanami::DB::VERSION
spec.authors = ["Hanami team"]
spec.email = ["[email protected]"]
spec.summary = "The database layer for Hanami apps"
spec.homepage = "https://hanamirb.org"
spec.license = "MIT"
spec.metadata = {
"bug_tracker_uri" => "https://github.com/hanami/db/issues",
"changelog_uri" => "https://github.com/hanami/db/blob/main/CHANGELOG.md",
"documentation_uri" => "https://guides.hanamirb.org",
"funding_uri" => "https://github.com/sponsors/hanami",
"source_code_uri" => "https://github.com/hanami/db",
"rubygems_mfa_required" => "true"
}
spec.required_ruby_version = ">= 3.1"
spec.add_dependency "rom", "~> 5.3"
spec.add_dependency "rom-sql", "~> 3.6", ">= 3.6.4"
spec.add_dependency "zeitwerk", "~> 2.6"
spec.extra_rdoc_files = Dir["README*", "LICENSE*"]
spec.files = Dir["*.gemspec", "lib/**/*"]
end