-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhkdf.gemspec
30 lines (25 loc) · 1.08 KB
/
hkdf.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
# frozen_string_literal: true
$LOAD_PATH.unshift File.expand_path("lib", __dir__)
require "hkdf/version"
Gem::Specification.new do |s|
s.name = "hkdf"
s.version = HKDF::VERSION
s.authors = ["John Downey"]
s.email = ["[email protected]"]
s.homepage = "http://github.com/jtdowney/hkdf"
s.license = "MIT"
s.summary = "HMAC-based Key Derivation Function"
s.description = <<~DESC
A ruby implementation of RFC5869: HMAC-based Extract-and-Expand Key Derivation Function (HKDF). The goal of HKDF is
to take some source key material and generate suitable cryptographic keys from it.
DESC
s.files = Dir.glob("lib/**/*") + %w[README.md LICENSE]
s.test_files = Dir.glob("spec/**/*")
s.require_paths = ["lib"]
s.required_ruby_version = Gem::Requirement.new(">= 2.4.0")
s.add_development_dependency "rake", "~> 12.0"
s.add_development_dependency "rspec", "~> 3.9"
s.add_development_dependency "rubocop", "~> 1.12.0"
s.add_development_dependency "rubocop-rake", "~> 0.5.1"
s.add_development_dependency "rubocop-rspec", "~> 2.2"
end