bcrypt-ruby.gemspec 927 B

12345678910111213141516171819202122232425262728
  1. Gem::Specification.new do |s|
  2. s.name = 'bcrypt-ruby'
  3. s.version = '3.0.1'
  4. s.summary = "OpenBSD's bcrypt() password hashing algorithm."
  5. s.description = <<-EOF
  6. bcrypt() is a sophisticated and secure hash algorithm designed by The OpenBSD project
  7. for hashing passwords. bcrypt-ruby provides a simple, humane wrapper for safely handling
  8. passwords.
  9. EOF
  10. s.files = `git ls-files`.split("\n")
  11. s.require_path = 'lib'
  12. s.add_development_dependency 'rake-compiler'
  13. s.add_development_dependency 'rspec'
  14. s.has_rdoc = true
  15. s.rdoc_options += ['--title', 'bcrypt-ruby', '--line-numbers', '--inline-source', '--main', 'README.md']
  16. s.extra_rdoc_files += ['README.md', 'COPYING', 'CHANGELOG', *Dir['lib/**/*.rb']]
  17. s.extensions = 'ext/mri/extconf.rb'
  18. s.authors = ["Coda Hale"]
  19. s.email = "coda.hale@gmail.com"
  20. s.homepage = "http://bcrypt-ruby.rubyforge.org"
  21. s.rubyforge_project = "bcrypt-ruby"
  22. end