-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtrophy_api_client.gemspec
More file actions
25 lines (23 loc) · 1.08 KB
/
trophy_api_client.gemspec
File metadata and controls
25 lines (23 loc) · 1.08 KB
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
# frozen_string_literal: true
require_relative "lib/gemconfig"
Gem::Specification.new do |spec|
spec.name = "trophy_api_client"
spec.version = TrophyApiClient::Gemconfig::VERSION
spec.authors = TrophyApiClient::Gemconfig::AUTHORS
spec.email = TrophyApiClient::Gemconfig::EMAIL
spec.summary = TrophyApiClient::Gemconfig::SUMMARY
spec.description = TrophyApiClient::Gemconfig::DESCRIPTION
spec.homepage = TrophyApiClient::Gemconfig::HOMEPAGE
spec.required_ruby_version = ">= 2.7.0"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = TrophyApiClient::Gemconfig::SOURCE_CODE_URI
spec.metadata["changelog_uri"] = TrophyApiClient::Gemconfig::CHANGELOG_URI
spec.files = Dir.glob("lib/**/*")
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.add_dependency "async-http-faraday", ">= 0.0", "< 1.0"
spec.add_dependency "faraday", ">= 1.10", "< 3.0"
spec.add_dependency "faraday-net_http", ">= 1.0", "< 4.0"
spec.add_dependency "faraday-retry", ">= 1.0", "< 3.0"
end