keybox 1.1.0 → 1.1.1
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGES +10 -0
- data/lib/keybox.rb +1 -1
- data/lib/keybox/application/base.rb +10 -0
- data/lib/keybox/application/password_safe.rb +5 -5
- data/lib/keybox/highline_util.rb +6 -9
- data/lib/keybox/storage/container.rb +10 -5
- data/lib/keybox/storage/record.rb +6 -0
- data/spec/base_app_spec.rb +15 -17
- data/spec/convert_csv_spec.rb +13 -11
- data/spec/entry_spec.rb +32 -32
- data/spec/keybox_app_spec.rb +85 -78
- data/spec/kpg_app_spec.rb +33 -40
- data/spec/password_hash_spec.rb +3 -3
- data/spec/randomizer_spec.rb +53 -54
- data/spec/storage_container_spec.rb +39 -29
- data/spec/storage_record_spec.rb +21 -21
- data/spec/string_generator_spec.rb +39 -41
- data/spec/uuid_spec.rb +22 -21
- data/vendor/highline/highline.rb +54 -14
- data/vendor/highline/highline/system_extensions.rb +1 -1
- metadata +11 -11
metadata
CHANGED
@@ -1,10 +1,10 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
|
-
rubygems_version: 0.9.
|
2
|
+
rubygems_version: 0.9.2
|
3
3
|
specification_version: 1
|
4
4
|
name: keybox
|
5
5
|
version: !ruby/object:Gem::Version
|
6
|
-
version: 1.1.
|
7
|
-
date: 2007-
|
6
|
+
version: 1.1.1
|
7
|
+
date: 2007-06-21 00:00:00 -06:00
|
8
8
|
summary: Keybox is a set of command line applications and ruby libraries for secure password storage and password generation.
|
9
9
|
require_paths:
|
10
10
|
- lib
|
@@ -50,7 +50,12 @@ files:
|
|
50
50
|
- spec/string_generator_spec.rb
|
51
51
|
- spec/password_hash_spec.rb
|
52
52
|
- spec/randomizer_spec.rb
|
53
|
-
- lib/keybox.rb
|
53
|
+
- lib/keybox/storage/container.rb
|
54
|
+
- lib/keybox/storage/record.rb
|
55
|
+
- lib/keybox/convert/csv.rb
|
56
|
+
- lib/keybox/application/base.rb
|
57
|
+
- lib/keybox/application/password_generator.rb
|
58
|
+
- lib/keybox/application/password_safe.rb
|
54
59
|
- lib/keybox/highline_util.rb
|
55
60
|
- lib/keybox/cipher.rb
|
56
61
|
- lib/keybox/error.rb
|
@@ -62,12 +67,7 @@ files:
|
|
62
67
|
- lib/keybox/string_generator.rb
|
63
68
|
- lib/keybox/password_hash.rb
|
64
69
|
- lib/keybox/storage.rb
|
65
|
-
- lib/keybox
|
66
|
-
- lib/keybox/storage/record.rb
|
67
|
-
- lib/keybox/convert/csv.rb
|
68
|
-
- lib/keybox/application/base.rb
|
69
|
-
- lib/keybox/application/password_generator.rb
|
70
|
-
- lib/keybox/application/password_safe.rb
|
70
|
+
- lib/keybox.rb
|
71
71
|
- bin/keybox
|
72
72
|
- bin/kpg
|
73
73
|
- README
|
@@ -79,7 +79,7 @@ rdoc_options:
|
|
79
79
|
- --line-numbers
|
80
80
|
- --inline-source
|
81
81
|
- --title
|
82
|
-
- keybox - 1.1.
|
82
|
+
- keybox - 1.1.1
|
83
83
|
- --main
|
84
84
|
- README
|
85
85
|
extra_rdoc_files:
|