-
Notifications
You must be signed in to change notification settings - Fork 11
/
acquia-http-hmac.gemspec
29 lines (26 loc) · 1.08 KB
/
acquia-http-hmac.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
# frozen_string_literal: true
Gem::Specification.new do |s|
s.name = 'acquia-http-hmac'
s.version = '2.0.3'
s.required_ruby_version = '>= 3.3.0'
s.licenses = ['MIT']
s.summary = 'HMAC signing library and rack middleware'
s.description = "HMAC signing library and rack middleware conforming to Acquia's HMAC 2.0 specifications"
s.date = Time.now.strftime('%Y-%m-%d')
s.authors = ['Peter Wolanin', 'Marc Seeger']
s.email = '[email protected]'
s.homepage = 'https://www.acquia.com/'
s.files = Dir['[A-Z]*', '{bin,etc,lib,test}/**/*']
s.bindir = 'bin'
s.require_paths = ['lib']
s.executables << 'acq-http-request'
s.add_dependency 'addressable', '~> 2.8'
s.add_development_dependency('grape', '~> 2.2')
s.add_development_dependency('multi_json', '~> 1.15')
s.add_development_dependency 'rack', '~> 2.2.10'
s.add_development_dependency('rack-test', '~> 2.1')
s.add_development_dependency('rake', '~> 13.2')
s.add_development_dependency 'rubocop', '~> 1.69'
s.add_development_dependency('sqlite3', '~> 2.4')
s.add_development_dependency('webrick', '~> 1.9')
end