-
Notifications
You must be signed in to change notification settings - Fork 0
/
apia-open_api.gemspec
28 lines (21 loc) · 1.04 KB
/
apia-open_api.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
# frozen_string_literal: true
require_relative "lib/apia/open_api/version"
Gem::Specification.new do |spec|
spec.name = "apia-open_api"
spec.version = Apia::OpenApi::VERSION
spec.authors = ["Paul Sturgess"]
spec.summary = "Apia OpenAPI spec generator"
spec.homepage = "https://github.com/apiaframework/apia-openapi"
spec.license = "MIT"
spec.required_ruby_version = ">= 2.7.0"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "https://github.com/apiaframework/apia-openapi"
spec.metadata["changelog_uri"] = "https://github.com/apiaframework/apia-openapi/changelog.md"
spec.metadata["rubygems_mfa_required"] = "false" # rubocop:disable Gemspec/RequireMFA (enabling MFA means we cannot auto publish via the CI)
spec.files = Dir[File.join("lib", "**", "*.rb")] +
Dir["{*.gemspec,Gemfile,Rakefile,README.*,LICENSE*}"]
spec.bindir = "exe"
spec.executables = spec.files.grep(/\Aexe\//) { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.add_dependency "activesupport", ">= 6"
end