-
Notifications
You must be signed in to change notification settings - Fork 0
/
fql.gemspec
34 lines (29 loc) · 1.26 KB
/
fql.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
require_relative "lib/fql/version"
Gem::Specification.new do |spec|
spec.name = "fql"
spec.version = FQL::VERSION
spec.authors = ["Txus Bach"]
spec.email = ["[email protected]"]
spec.summary = "Factorial Query Language"
spec.homepage = "https://github.com/factorialco/fql"
spec.license = "MIT"
spec.required_ruby_version = ">= 3.0.6"
spec.metadata = {
"bug_tracker_uri" => "https://github.com/factorialco/fql/issues",
"changelog_uri" => "https://github.com/factorialco/fql/releases",
"source_code_uri" => "https://github.com/factorialco/fql",
"homepage_uri" => spec.homepage,
"rubygems_mfa_required" => "true"
}
spec.add_runtime_dependency "activerecord", "~> 6.0"
spec.add_runtime_dependency "i18n", "~> 1.8"
spec.add_runtime_dependency "sorbet-rails", "~> 0.7.3"
spec.add_runtime_dependency "sorbet-runtime", "~> 0.5"
spec.add_runtime_dependency "sorbet-struct-comparable", "~> 1.3.0"
spec.add_runtime_dependency "zeitwerk", "~> 2.4"
# Specify which files should be added to the gem when it is released.
spec.files = Dir.glob(%w[LICENSE.txt README.md {exe,lib}/**/*]).reject { |f| File.directory?(f) }
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
end