-
Notifications
You must be signed in to change notification settings - Fork 8
/
ey-hmac.gemspec
33 lines (27 loc) · 1.24 KB
/
ey-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
30
31
32
33
# frozen_string_literal: true
require 'English'
require File.expand_path('lib/ey-hmac/version', __dir__)
Gem::Specification.new do |gem|
gem.name = 'ey-hmac'
gem.version = Ey::Hmac::VERSION
gem.authors = ['Josh Lane']
gem.email = ['[email protected]']
gem.description = 'Lightweight HMAC signing libraries and middleware for Farday and Rack'
gem.summary = 'Lightweight HMAC signing libraries and middleware for Farday and Rack'
gem.homepage = 'https://github.com/lanej/hmac'
gem.metadata['bug_tracker_uri'] = "#{gem.homepage}/issues"
gem.metadata['changelog_uri'] = "#{gem.homepage}/blob/HEAD/CHANGELOG.md"
gem.metadata['documentation_uri'] = "https://www.rubydoc.info/gems/#{gem.name}/#{gem.version}"
gem.metadata['homepage_uri'] = gem.homepage
gem.metadata['source_code_uri'] = "#{gem.homepage}/tree/v#{gem.version}"
gem.files = Dir.chdir(__dir__) do
`git ls-files -z`.split("\x0").reject do |file|
file.start_with?(*%w[.git .rubocop Gemfile Rakefile ey-hmac.gemspec spec])
end
end
gem.require_paths = ['lib']
gem.license = 'MIT'
gem.required_ruby_version = '>= 2.5'
gem.add_development_dependency 'bundler', '>= 2.2'
gem.add_development_dependency 'rake'
end