-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRakefile
More file actions
25 lines (23 loc) · 1.03 KB
/
Rakefile
File metadata and controls
25 lines (23 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
require 'rake'
begin
require 'jeweler'
Jeweler::Tasks.new do |gem|
gem.name = "ruby-password"
gem.summary = %Q{A password handling library for Ruby with interface to CrackLib}
gem.description = %Q{Ruby/Password is a suite of password handling methods for Ruby. It supports
the manual entry of passwords from the keyboard in both buffered and
unbuffered modes, password strength checking, random password generation,
phonemic password generation (for easy memorisation by human-beings) and the
encryption of passwords.}
gem.email = "albert.lash@docunext.com"
gem.homepage = "http://www.docunext.com/"
gem.authors = ["Albert Lash", "Ian Macdonald"]
gem.add_dependency "ruby-termios"
gem.add_development_dependency "shoulda"
gem.extensions = FileList['extconf.rb']
# gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
end
Jeweler::GemcutterTasks.new
rescue LoadError
puts "Jeweler (or a dependency) not available. Install it with: sudo gem install jeweler"
end