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
|
Gem::Specification.new do |s|
s.name = 'bcrypt'
s.version = '3.1.20'
s.summary = "OpenBSD's bcrypt() password hashing algorithm."
s.description = <<-EOF
bcrypt() is a sophisticated and secure hash algorithm designed by The OpenBSD project
for hashing passwords. The bcrypt Ruby gem provides a simple wrapper for safely handling
passwords.
EOF
s.files = Dir['CHANGELOG', 'COPYING', 'README.md', 'lib/**/*.rb', 'ext/**/*.*']
s.require_path = 'lib'
s.add_development_dependency 'rake-compiler', '~> 1.2.0'
s.add_development_dependency 'rspec', '>= 3'
s.rdoc_options += ['--title', 'bcrypt-ruby', '--line-numbers', '--inline-source', '--main', 'README.md']
s.extra_rdoc_files += ['README.md', 'COPYING', 'CHANGELOG', *Dir['lib/**/*.rb'], 'lib/bcrypt_ext.jar']
s.extensions = 'ext/mri/extconf.rb'
s.authors = ["Coda Hale"]
s.email = "coda.hale@gmail.com"
s.homepage = "https://github.com/bcrypt-ruby/bcrypt-ruby"
s.license = "MIT"
end
|