Sha256: 994dea69591821ee0762c72c15e2f369c562a7f4391f6f2f47b57ba1d82bf6d8

Contents?: true

Size: 997 Bytes

Versions: 5

Compression:

Stored size: 997 Bytes

Contents

Gem::Specification.new do |s|
  s.name = 'bcrypt-ruby'
  s.version = '3.1.2'

  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. bcrypt-ruby provides a simple, humane wrapper for safely handling
    passwords.
  EOF

  s.files = `git ls-files`.split("\n")
  s.require_path = 'lib'

  s.add_development_dependency 'rake-compiler', '~> 0.9.0'
  s.add_development_dependency 'rspec'
  s.add_development_dependency 'rdoc'

  s.has_rdoc = true
  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 = "http://bcrypt-ruby.rubyforge.org"
  s.rubyforge_project = "bcrypt-ruby"
  s.license = "MIT"
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
bcrypt-ruby-3.1.2-x86-mswin32-60 bcrypt-ruby.gemspec
bcrypt-ruby-3.1.2-x86-mingw32 bcrypt-ruby.gemspec
bcrypt-ruby-3.1.2-x64-mingw32 bcrypt-ruby.gemspec
bcrypt-ruby-3.1.2-java bcrypt-ruby.gemspec
bcrypt-ruby-3.1.2 bcrypt-ruby.gemspec