to_pass 0.4.0 → 0.5.0
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.
- data/Rakefile +10 -1
- data/TODO +6 -0
- data/VERSION +1 -1
- data/bin/password_of +14 -0
- data/bin/to_pass +5 -1
- data/lib/to_pass/algorithms/secure.yml +33 -0
- data/lib/to_pass/cli.rb +5 -5
- data/lib/to_pass/converter_reader.rb +1 -1
- data/lib/to_pass/converters/downcase.rb +10 -0
- data/lib/to_pass/converters/expand_below.rb +21 -0
- data/lib/to_pass/converters/remove_repetition.rb +23 -0
- data/lib/to_pass/converters/reverse.rb +7 -0
- data/man/index.txt +8 -0
- data/man/to_pass-algorithm.5 +93 -0
- data/man/to_pass-algorithm.5.html +185 -0
- data/man/to_pass-algorithm.5.ronn +93 -0
- data/man/to_pass-converter.5 +92 -0
- data/man/to_pass-converter.5.html +164 -0
- data/man/to_pass-converter.5.ronn +71 -0
- data/man/to_pass.1 +85 -0
- data/man/to_pass.1.html +160 -0
- data/man/to_pass.1.ronn +69 -0
- data/test/test_algorithms.rb +30 -0
- data/test/test_cli.rb +6 -0
- data/test/test_converters.rb +34 -0
- metadata +24 -5
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: to_pass
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 11
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 0
|
8
|
-
-
|
8
|
+
- 5
|
9
9
|
- 0
|
10
|
-
version: 0.
|
10
|
+
version: 0.5.0
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Matthias Viehweger
|
@@ -15,8 +15,8 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2010-
|
19
|
-
default_executable:
|
18
|
+
date: 2010-07-26 00:00:00 +02:00
|
19
|
+
default_executable:
|
20
20
|
dependencies:
|
21
21
|
- !ruby/object:Gem::Dependency
|
22
22
|
name: mocha
|
@@ -51,6 +51,7 @@ description: |-
|
|
51
51
|
One technique is to have a sentence which can be easily remembered transformed to a password.
|
52
52
|
email: kronn@kronn.de
|
53
53
|
executables:
|
54
|
+
- password_of
|
54
55
|
- to_pass
|
55
56
|
extensions: []
|
56
57
|
|
@@ -65,25 +66,42 @@ files:
|
|
65
66
|
- Rakefile
|
66
67
|
- TODO
|
67
68
|
- VERSION
|
69
|
+
- bin/password_of
|
68
70
|
- bin/to_pass
|
69
71
|
- lib/to_pass.rb
|
70
72
|
- lib/to_pass/algorithm_reader.rb
|
71
73
|
- lib/to_pass/algorithms/basic_de.yml
|
72
74
|
- lib/to_pass/algorithms/basic_en.yml
|
75
|
+
- lib/to_pass/algorithms/secure.yml
|
73
76
|
- lib/to_pass/base.rb
|
74
77
|
- lib/to_pass/cli.rb
|
75
78
|
- lib/to_pass/converter.rb
|
76
79
|
- lib/to_pass/converter_reader.rb
|
77
80
|
- lib/to_pass/converters.rb
|
78
81
|
- lib/to_pass/converters/collapse_chars.rb
|
82
|
+
- lib/to_pass/converters/downcase.rb
|
83
|
+
- lib/to_pass/converters/expand_below.rb
|
79
84
|
- lib/to_pass/converters/first_chars.rb
|
85
|
+
- lib/to_pass/converters/remove_repetition.rb
|
80
86
|
- lib/to_pass/converters/replace.rb
|
87
|
+
- lib/to_pass/converters/reverse.rb
|
81
88
|
- lib/to_pass/converters/swapcase.rb
|
82
89
|
- lib/to_pass/integration.rb
|
90
|
+
- man/index.txt
|
91
|
+
- man/to_pass-algorithm.5
|
92
|
+
- man/to_pass-algorithm.5.html
|
93
|
+
- man/to_pass-algorithm.5.ronn
|
94
|
+
- man/to_pass-converter.5
|
95
|
+
- man/to_pass-converter.5.html
|
96
|
+
- man/to_pass-converter.5.ronn
|
97
|
+
- man/to_pass.1
|
98
|
+
- man/to_pass.1.html
|
99
|
+
- man/to_pass.1.ronn
|
83
100
|
- test/fixtures/user_alg.yml
|
84
101
|
- test/fixtures/user_converter.rb
|
85
102
|
- test/helper.rb
|
86
103
|
- test/test_algorithm_reader.rb
|
104
|
+
- test/test_algorithms.rb
|
87
105
|
- test/test_base.rb
|
88
106
|
- test/test_cli.rb
|
89
107
|
- test/test_converter.rb
|
@@ -128,6 +146,7 @@ test_files:
|
|
128
146
|
- test/fixtures/user_converter.rb
|
129
147
|
- test/helper.rb
|
130
148
|
- test/test_algorithm_reader.rb
|
149
|
+
- test/test_algorithms.rb
|
131
150
|
- test/test_base.rb
|
132
151
|
- test/test_cli.rb
|
133
152
|
- test/test_converter.rb
|