1 2 3 4 5 6 7 8 9 10 11 12 13
|
Gem::Specification.new do |s|
s.name = "ruby-password"
s.version = "0.5.3"
s.authors = ["Ian Macdonald"]
s.email = ["ian@caliban.org"]
s.description = "A password handling library for Ruby with interface to CrackLib"
s.files = Dir.glob("{lib,ext}/**/*")
s.extensions << "ext/extconf.rb"
s.homepage = "http://www.caliban.org/ruby/ruby-password.shtm"
s.summary = "A password handling library for Ruby with interface to CrackLib"
s.licenses = ["GPL-2+"]
s.add_runtime_dependency('ruby-termios', '>= 1.0')
end
|