forked from pbhogan/scrypt
-
Notifications
You must be signed in to change notification settings - Fork 1
/
scrypt.gemspec
32 lines (27 loc) · 1.03 KB
/
scrypt.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "scrypt/version"
Gem::Specification.new do |s|
s.name = "scrypt"
s.version = SCrypt::VERSION
s.authors = ["Patrick Hogan"]
s.email = ["[email protected]"]
s.homepage = "https://github.com/pbhogan/scrypt"
s.summary = "scrypt password hashing algorithm."
s.description = <<-EOF
The scrypt key derivation function is designed to be far
more secure against hardware brute-force attacks than
alternative functions such as PBKDF2 or bcrypt.
EOF
s.add_dependency 'ffi-compiler', '>= 0.0.2'
s.add_dependency 'rake'
s.add_development_dependency "rspec"
s.add_development_dependency "rdoc"
s.add_development_dependency "awesome_print"
s.rubyforge_project = "scrypt"
s.extensions = ["ext/scrypt/Rakefile"]
s.files = %w(Rakefile scrypt.gemspec README.md COPYING) + Dir.glob("{lib,spec,autotest}/**/*")
s.files += Dir.glob("ext/scrypt/*")
s.test_files = Dir.glob("spec/**/*")
s.require_paths = ["lib"]
end