is_passgen 1.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/CHANGELOG +17 -0
- data/Manifest +11 -0
- data/README.rdoc +158 -0
- data/Rakefile +15 -0
- data/lib/passgen.rb +329 -0
- data/lib/passgen/probabilities.rb +804 -0
- data/lib/passgen/strength_analyzer.rb +283 -0
- data/passgen.gemspec +29 -0
- data/rails/init.rb +2 -0
- data/spec/passgen/strength_analyzer_spec.rb +75 -0
- data/spec/passgen_spec.rb +150 -0
- metadata +66 -0
metadata
ADDED
@@ -0,0 +1,66 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: is_passgen
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.1.2
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Erik Lindblad (CrypticE)
|
8
|
+
- Ronald Brachetti(rbecher)
|
9
|
+
- Ken Spencer (IotaSpencer)
|
10
|
+
autorequire:
|
11
|
+
bindir: bin
|
12
|
+
cert_chain: []
|
13
|
+
date: 2020-03-31 00:00:00.000000000 Z
|
14
|
+
dependencies: []
|
15
|
+
description: A password generation gem for Ruby and Rails applications.
|
16
|
+
email: erik@l2c.se
|
17
|
+
executables: []
|
18
|
+
extensions: []
|
19
|
+
extra_rdoc_files:
|
20
|
+
- CHANGELOG
|
21
|
+
- README.rdoc
|
22
|
+
- lib/passgen.rb
|
23
|
+
- lib/passgen/probabilities.rb
|
24
|
+
- lib/passgen/strength_analyzer.rb
|
25
|
+
files:
|
26
|
+
- CHANGELOG
|
27
|
+
- Manifest
|
28
|
+
- README.rdoc
|
29
|
+
- Rakefile
|
30
|
+
- lib/passgen.rb
|
31
|
+
- lib/passgen/probabilities.rb
|
32
|
+
- lib/passgen/strength_analyzer.rb
|
33
|
+
- passgen.gemspec
|
34
|
+
- rails/init.rb
|
35
|
+
- spec/passgen/strength_analyzer_spec.rb
|
36
|
+
- spec/passgen_spec.rb
|
37
|
+
homepage: http://github.com/cryptice/passgen
|
38
|
+
licenses: []
|
39
|
+
metadata: {}
|
40
|
+
post_install_message:
|
41
|
+
rdoc_options:
|
42
|
+
- "--line-numbers"
|
43
|
+
- "--inline-source"
|
44
|
+
- "--title"
|
45
|
+
- Passgen
|
46
|
+
- "--main"
|
47
|
+
- README.rdoc
|
48
|
+
require_paths:
|
49
|
+
- lib
|
50
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ">="
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
55
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
56
|
+
requirements:
|
57
|
+
- - ">="
|
58
|
+
- !ruby/object:Gem::Version
|
59
|
+
version: '1.2'
|
60
|
+
requirements: []
|
61
|
+
rubyforge_project:
|
62
|
+
rubygems_version: 2.7.6.2
|
63
|
+
signing_key:
|
64
|
+
specification_version: 3
|
65
|
+
summary: A password generation gem for Ruby and Rails applications.
|
66
|
+
test_files: []
|