Files: eab1c727ed44365d4803bb224d056f48ebec905c / bcrypt-ruby.gemspec
921 bytesRaw
1 | Gem::Specification.new do |s| |
2 | s.name = 'bcrypt-ruby' |
3 | s.version = '2.1.4' |
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. bcrypt-ruby provides a simple, humane 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' |
16 | s.add_development_dependency 'rspec' |
17 | |
18 | s.has_rdoc = true |
19 | s.rdoc_options += ['--title', 'bcrypt-ruby', '--line-numbers', '--inline-source', '--main', 'README'] |
20 | s.extra_rdoc_files += ['README', 'COPYING', 'CHANGELOG', *Dir['lib/**/*.rb']] |
21 | |
22 | s.extensions = 'ext/mri/extconf.rb' |
23 | |
24 | s.authors = ["Coda Hale"] |
25 | s.email = "coda.hale@gmail.com" |
26 | s.homepage = "http://bcrypt-ruby.rubyforge.org" |
27 | s.rubyforge_project = "bcrypt-ruby" |
28 | end |
29 |
Built with git-ssb-web