File: aes_key_wrap.gemspec

package info (click to toggle)
ruby-aes-key-wrap 1.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 108 kB
  • sloc: ruby: 77; makefile: 6; sh: 3
file content (26 lines) | stat: -rw-r--r-- 967 bytes parent folder | download
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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'aes_key_wrap/version'

Gem::Specification.new do |spec|
  spec.name          = 'aes_key_wrap'
  spec.version       = AESKeyWrap::VERSION
  spec.authors       = ['Tom Dalling']
  spec.email         = ['tom' + '@tom' + 'dalling.com']

  spec.summary       = %q{A Ruby implementation of AES Key Wrap, a.k.a RFC 3394, a.k.a NIST Key Wrap.}
  spec.homepage      = 'https://github.com/tomdalling/aes_key_wrap'
  spec.license       = 'MIT'

  spec.files         = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
  spec.require_paths = ['lib']

  spec.add_development_dependency 'test_bench', '~> 1.0'
  spec.add_development_dependency 'gem-release'

  # code climate doesn't support v0.18+
  # see: https://github.com/codeclimate/test-reporter/issues/413
  spec.add_development_dependency 'simplecov', '< 0.18'
end