-
Notifications
You must be signed in to change notification settings - Fork 0
/
mauth-client.gemspec
33 lines (29 loc) · 1.51 KB
/
mauth-client.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
33
# frozen_string_literal: true
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'mauth/version'
Gem::Specification.new do |spec|
spec.name = 'mauth-client'
spec.version = MAuth::VERSION
spec.authors = ['Matthew Szenher', 'Aaron Suggs', 'Geoffrey Ducharme', 'Ethan']
spec.email = ['[email protected]']
spec.summary = 'Sign and authenticate requests and responses with mAuth authentication.'
spec.description = 'Client for signing and authentication of requests and responses with mAuth authentication. ' \
'Includes middleware for Rack and Faraday for incoming and outgoing requests and responses.'
spec.homepage = 'https://github.com/mdsol/mauth-client-ruby'
spec.license = 'MIT'
spec.required_ruby_version = '>= 2.7.0'
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
spec.bindir = 'exe'
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ['lib']
spec.add_dependency 'addressable', '~> 2.0'
spec.add_dependency 'coderay', '~> 1.0'
spec.add_dependency 'faraday', '>= 1.9', '< 3.0'
spec.add_dependency 'faraday-http-cache', '>= 2.0', '< 3.0'
spec.add_dependency 'faraday-net_http_persistent'
spec.add_dependency 'faraday-retry'
spec.add_dependency 'net-http-persistent', '>= 3.1'
spec.add_dependency 'rack', '> 2.2.3'
spec.add_dependency 'term-ansicolor', '~> 1.0'
end