forked from net-ssh/bcrypt_pbkdf-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbcrypt_pbkdf.gemspec
More file actions
29 lines (23 loc) · 1.03 KB
/
bcrypt_pbkdf.gemspec
File metadata and controls
29 lines (23 loc) · 1.03 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
Gem::Specification.new do |s|
s.name = 'bcrypt_pbkdf'
s.version = '1.1.2'
s.summary = "OpenBSD's bcrypt_pbkdf (a variant of PBKDF2 with bcrypt-based PRF)"
s.description = <<-EOF
This gem implements bcrypt_pbkdf (a variant of PBKDF2 with bcrypt-based PRF)
EOF
s.files = `git ls-files`.split("\n")
s.require_path = 'lib'
s.add_development_dependency 'rake-compiler', '~> 1.2.5'
s.add_development_dependency 'minitest', '~> 5'
s.add_development_dependency 'openssl', '~> 3'
s.add_development_dependency 'rdoc', '~> 6'
s.add_development_dependency 'rake-compiler-dock', '~> 1.5.0'
s.add_development_dependency 'benchmark', '~> 0.4.0'
s.rdoc_options += ['--title', 'bcrypt_pbkdf', '--line-numbers', '--inline-source', '--main', 'README.md']
s.extra_rdoc_files += ['README.md', 'COPYING', 'CHANGELOG.md', *Dir['lib/**/*.rb']]
s.extensions = 'ext/mri/extconf.rb'
s.authors = ["Miklos Fazekas"]
s.email = "mfazekas@szemafor.com"
s.homepage = "https://github.com/net-ssh/bcrypt_pbkdf-ruby"
s.license = "MIT"
end