-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathyescrypt.gemspec
More file actions
35 lines (29 loc) · 1.32 KB
/
yescrypt.gemspec
File metadata and controls
35 lines (29 loc) · 1.32 KB
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
# frozen_string_literal: true
require_relative "lib/yescrypt/version"
Gem::Specification.new do |s|
s.name = "yescrypt"
s.version = Yescrypt::VERSION
s.authors = ["Suleyman Musayev"]
s.email = ["slmusayev@gmail.com"]
s.summary = "yescrypt: a memory-hard password hashing function used in modern Linux."
s.description = "Ruby C extension wrapping the yescrypt password hashing algorithm. " \
"yescrypt is the default password hash in modern Linux distributions " \
"(glibc 2.36+). It extends scrypt with pwxform for stronger " \
"time-memory tradeoff resistance. Supports YESCRYPT_WORM (scrypt-compatible), " \
"YESCRYPT_RW, and YESCRYPT_DEFAULTS flavors."
s.homepage = "https://github.com/msuliq/yescrypt"
s.license = "MIT"
s.metadata = {
"rubygems_mfa_required" => "true",
"homepage_uri" => s.homepage,
"source_code_uri" => s.homepage
}
s.required_ruby_version = ">= 2.7.2"
s.files = Dir["lib/**/*.rb", "ext/**/*.{c,h,rb}", "LICENSE", "README.md"]
s.require_paths = ["lib"]
s.extensions = ["ext/yescrypt/extconf.rb"]
s.add_development_dependency "bundler", ">= 2.0"
s.add_development_dependency "minitest", "~> 5.0"
s.add_development_dependency "rake", "~> 13.0"
s.add_development_dependency "rake-compiler", "~> 1.0"
end