-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathssoready.gemspec
25 lines (23 loc) · 1016 Bytes
/
ssoready.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
# frozen_string_literal: true
require_relative "lib/gemconfig"
Gem::Specification.new do |spec|
spec.name = "ssoready"
spec.version = "1.0.0"
spec.authors = SSOReady::Gemconfig::AUTHORS
spec.email = SSOReady::Gemconfig::EMAIL
spec.summary = SSOReady::Gemconfig::SUMMARY
spec.description = SSOReady::Gemconfig::DESCRIPTION
spec.homepage = SSOReady::Gemconfig::HOMEPAGE
spec.required_ruby_version = ">= 2.7.0"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = SSOReady::Gemconfig::SOURCE_CODE_URI
spec.metadata["changelog_uri"] = SSOReady::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