Files: 136180d69985560ef1c8af7ced4d04895e90c31e / bcrypt.gemspec
981 bytesRaw
1 | Gem::Specification.new do |s| |
2 | s.name = 'bcrypt' |
3 | s.version = '3.1.11' |
4 | |
5 | s.summary = "OpenBSD's bcrypt() password hashing algorithm." |
6 | s.description = <<-EOF |
7 | bcrypt() is a sophisticated and secure hash algorithm designed by The OpenBSD project |
8 | for hashing passwords. The bcrypt Ruby gem provides a simple wrapper for safely handling |
9 | passwords. |
10 | EOF |
11 | |
12 | s.files = `git ls-files`.split("\n") |
13 | s.require_path = 'lib' |
14 | |
15 | s.add_development_dependency 'rake-compiler', '~> 0.9.2' |
16 | s.add_development_dependency 'rspec', '>= 3' |
17 | s.add_development_dependency 'rdoc', '~> 3.12' |
18 | |
19 | s.has_rdoc = true |
20 | s.rdoc_options += ['--title', 'bcrypt-ruby', '--line-numbers', '--inline-source', '--main', 'README.md'] |
21 | s.extra_rdoc_files += ['README.md', 'COPYING', 'CHANGELOG', *Dir['lib/**/*.rb']] |
22 | |
23 | s.extensions = 'ext/mri/extconf.rb' |
24 | |
25 | s.authors = ["Coda Hale"] |
26 | s.email = "coda.hale@gmail.com" |
27 | s.homepage = "https://github.com/codahale/bcrypt-ruby" |
28 | s.license = "MIT" |
29 | end |
30 |
Built with git-ssb-web