-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdigest-kangarootwelve.gemspec
47 lines (40 loc) · 1.62 KB
/
digest-kangarootwelve.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# coding: utf-8
lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'digest/kangarootwelve/version'
require 'find'
Gem::Specification.new do |spec|
spec.name = "digest-kangarootwelve"
spec.version = Digest::KangarooTwelve::VERSION
spec.authors = ["konsolebox"]
spec.email = ["[email protected]"]
spec.summary = "KangarooTwelve for Ruby"
spec.description = "A KangarooTwelve library that utilizes the XKCP package and can be " \
"optionally optimized during compile-time based on a target. It produces " \
"implementation classes that work on top of Digest::Base and conform " \
"with how Digest classes work."
spec.homepage = "https://github.com/konsolebox/digest-kangarootwelve-ruby"
spec.license = "MIT"
spec.required_ruby_version = ">= 2.2"
spec.files = %w[
Gemfile
LICENSE
README.md
Rakefile
digest-kangarootwelve.gemspec
lib/digest/kangarootwelve/version.rb
rakelib/alt-install-task.rake
test/test.rb
]
spec.files += Find.find("ext").to_a
spec.files += ["LICENSE.XKCP"] if File.exist? "LICENSE.XKCP"
spec.executables = []
spec.test_files = ["test/test.rb"]
spec.require_paths = ["lib"]
spec.add_development_dependency "rake"
spec.add_development_dependency "rake-compiler", "~> 1.2", ">= 1.2.3"
spec.add_development_dependency "minitest", "~> 5.8"
spec.add_development_dependency "nori"
spec.add_development_dependency "nokogiri"
spec.extensions = %w[ext/digest/kangarootwelve/extconf.rb]
end