-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsh-cli-connector.gemspec
More file actions
34 lines (26 loc) · 990 Bytes
/
sh-cli-connector.gemspec
File metadata and controls
34 lines (26 loc) · 990 Bytes
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 "version"
Gem::Specification.new do |spec|
spec.name = "foobara-sh-cli-connector"
spec.version = Foobara::ShCliConnector::VERSION
spec.authors = ["Miles Georgi"]
spec.email = ["azimux@gmail.com"]
spec.summary = "Command-line connector for Foobara"
spec.homepage = "https://github.com/foobara/sh-cli-connector"
# Equivalent to SPDX License Expression: Apache-2.0 OR MIT
spec.license = "Apache-2.0 OR MIT"
spec.licenses = ["Apache-2.0", "MIT"]
spec.required_ruby_version = Foobara::ShCliConnector::MINIMUM_RUBY_VERSION
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = spec.homepage
spec.metadata["changelog_uri"] = "#{spec.homepage}/blob/main/CHANGELOG.md"
spec.files = Dir[
"lib/**/*",
"src/**/*",
"LICENSE*.txt",
"README.md",
"CHANGELOG.md"
]
spec.add_dependency "foobara", ">= 0.1.1", "< 2.0.0"
spec.require_paths = ["lib"]
spec.metadata["rubygems_mfa_required"] = "true"
end