Sha256: eeacefe16d846d3ede3fc68fc0e5a5347bb3bee6a86c9bbf5588f8f9b99a2007

Contents?: true

Size: 915 Bytes

Versions: 2

Compression:

Stored size: 915 Bytes

Contents

Gem::Specification.new do |s|
  s.name = 'bcrypt'
  s.version = '3.1.19'

  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 = `git ls-files`.split("\n")
  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']]

  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

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
bcrypt-3.1.19-java bcrypt.gemspec
bcrypt-3.1.19 bcrypt.gemspec