-
Notifications
You must be signed in to change notification settings - Fork 164
/
Copy pathsignet.gemspec
32 lines (27 loc) · 1.22 KB
/
signet.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
$LOAD_PATH.push File.expand_path("lib", __dir__)
require "signet/version"
Gem::Specification.new do |gem|
gem.name = "signet"
gem.version = Signet::VERSION
gem.required_rubygems_version = ">= 1.3.5"
gem.require_paths = ["lib"]
gem.authors = ["Google LLC"]
gem.license = "Apache-2.0"
gem.description = "Signet is an OAuth 1.0 / OAuth 2.0 implementation.\n"
gem.email = ["googleapis-packages@google.com"]
gem.extra_rdoc_files = ["README.md"]
gem.files = Dir.glob("lib/**/*.rb") + Dir.glob("*.md") + ["LICENSE", ".yardopts"]
gem.homepage = "https://github.com/googleapis/signet"
gem.rdoc_options = ["--main", "README.md"]
gem.summary = "Signet is an OAuth 1.0 / OAuth 2.0 implementation."
gem.required_ruby_version = ">= 3.0"
gem.add_dependency "addressable", "~> 2.8"
gem.add_dependency "faraday", ">= 0.17.5", "< 3.a"
gem.add_dependency "jwt", ">= 1.5", "< 3.0"
gem.add_dependency "multi_json", "~> 1.10"
if gem.respond_to? :metadata
gem.metadata["changelog_uri"] = "https://github.com/googleapis/signet/blob/main/CHANGELOG.md"
gem.metadata["source_code_uri"] = "https://github.com/googleapis/signet"
gem.metadata["bug_tracker_uri"] = "https://github.com/googleapis/signet/issues"
end
end