keybox 1.1.1 → 1.2.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -73,7 +73,6 @@ module Keybox
73
73
  def initialize(passphrase,path)
74
74
  super()
75
75
 
76
-
77
76
  @path = path
78
77
  @passphrase = passphrase
79
78
  @records = []
@@ -84,7 +84,7 @@ module Keybox
84
84
 
85
85
  def load_default_chargram_list
86
86
  list = []
87
- File.open(File.join(Keybox::APP_DATA_DIR,"chargrams.txt")) do |f|
87
+ File.open(File.join(Keybox::APP_RESOURCE_DIR,"chargrams.txt")) do |f|
88
88
  f.each_line do |line|
89
89
  next if line =~ /^#/
90
90
  list << line.rstrip
@@ -0,0 +1,21 @@
1
+ require 'keybox'
2
+
3
+ module Keybox
4
+ class Version
5
+ MAJOR = 1
6
+ MINOR = 2
7
+ BUILD = 0
8
+
9
+ class << self
10
+ def to_a
11
+ [MAJOR, MINOR, BUILD]
12
+ end
13
+
14
+ def to_s
15
+ to_a.join(".")
16
+ end
17
+ end
18
+ end
19
+ VERSION = Version.to_s
20
+ end
21
+
File without changes
@@ -1,4 +1,4 @@
1
- require 'keybox'
1
+ require File.expand_path(File.join(File.dirname(__FILE__),"spec_helper.rb"))
2
2
  require 'keybox/application/base'
3
3
 
4
4
  describe "Keybox Base Application" do
@@ -1,6 +1,5 @@
1
- require 'tempfile'
2
- require 'keybox'
3
- require 'keybox/convert/csv'
1
+ require File.expand_path(File.join(File.dirname(__FILE__),"spec_helper.rb"))
2
+
4
3
  describe "CSV Convert class" do
5
4
  before(:each) do
6
5
  @import_csv = Tempfile.new("keybox_import.csv")
@@ -1,4 +1,4 @@
1
- require 'keybox'
1
+ require File.expand_path(File.join(File.dirname(__FILE__),"spec_helper.rb"))
2
2
  describe "Account Entry" do
3
3
  it "fields get set correctly" do
4
4
  k = Keybox::AccountEntry.new("a test title", "user")
@@ -1,5 +1,4 @@
1
- require 'tempfile'
2
- require 'keybox'
1
+ require File.expand_path(File.join(File.dirname(__FILE__),"spec_helper.rb"))
3
2
  require 'keybox/application/password_safe'
4
3
 
5
4
  describe "Keybox Password Safe Application" do
@@ -50,13 +49,15 @@ describe "Keybox Password Safe Application" do
50
49
 
51
50
  it "executing with no args should have output on stdout" do
52
51
  kps = Keybox::Application::PasswordSafe.new(["-f", @testing_db.path, "-c", @testing_cfg.path])
53
- kps.set_io(StringIO.new(@passphrase),StringIO.new,StringIO.new)
52
+ prompted_values = ["dark", @passphrase].join("\n")
53
+ kps.set_io(StringIO.new(prompted_values),StringIO.new,StringIO.new)
54
54
  kps.run
55
55
  kps.stdout.string.size.should > 0
56
56
  end
57
57
 
58
58
  it "general options get set correctly" do
59
59
  kps = Keybox::Application::PasswordSafe.new(["-f", @testing_db.path, "-c", @testing_cfg.path, "--debug", "--no-use-hash-for-url"])
60
+ kps.set_io(StringIO.new("dark"),StringIO.new,StringIO.new)
60
61
  kps.merge_options
61
62
  kps.options.db_file.should == @testing_db.path
62
63
  kps.options.config_file.should == @testing_cfg.path
@@ -78,7 +79,7 @@ describe "Keybox Password Safe Application" do
78
79
 
79
80
  it "space separated words are okay for names" do
80
81
  kps = Keybox::Application::PasswordSafe.new(["-f", @testing_db.path, "-c", @testing_cfg.path, "--add", "An Example"])
81
- prompted_values = [@passphrase, "An example"] + %w(example.com someuser apassword apassword noinfo yes)
82
+ prompted_values = ["none", @passphrase, "An example"] + %w(example.com someuser apassword apassword noinfo yes)
82
83
  stdin = StringIO.new(prompted_values.join("\n"))
83
84
  kps.set_io(stdin,StringIO.new,StringIO.new)
84
85
  kps.run
@@ -126,7 +127,7 @@ describe "Keybox Password Safe Application" do
126
127
  it "prompted for password twice to create database initially" do
127
128
  File.unlink(@testing_db.path)
128
129
  kps = Keybox::Application::PasswordSafe.new(["-f", @testing_db.path, "-c", @testing_cfg.path])
129
- stdin = StringIO.new([@passphrase,@passphrase].join("\n"))
130
+ stdin = StringIO.new(["dark", @passphrase,@passphrase].join("\n"))
130
131
  kps.set_io(stdin,StringIO.new,StringIO.new)
131
132
  kps.run
132
133
  kps.db.records.size.should == 0
@@ -136,7 +137,7 @@ describe "Keybox Password Safe Application" do
136
137
 
137
138
  it "file can be opened with password" do
138
139
  kps = Keybox::Application::PasswordSafe.new(["-f", @testing_db.path, "-c", @testing_cfg.path])
139
- stdin = StringIO.new(@passphrase + "\n")
140
+ stdin = StringIO.new(["light",@passphrase].join("\n"))
140
141
  kps.set_io(stdin,StringIO.new,StringIO.new)
141
142
  kps.run
142
143
  kps.db.records.size.should == 3
@@ -144,7 +145,7 @@ describe "Keybox Password Safe Application" do
144
145
 
145
146
  it "adding an entry to the database works" do
146
147
  kps = Keybox::Application::PasswordSafe.new(["-f", @testing_db.path, "-c", @testing_cfg.path, "--add", "example.com"])
147
- prompted_values = [@passphrase] + %w(example.com example.com someuser apassword apassword noinfo yes)
148
+ prompted_values = ["dark",@passphrase] + %w(example.com example.com someuser apassword apassword noinfo yes)
148
149
  stdin = StringIO.new(prompted_values.join("\n"))
149
150
  kps.set_io(stdin,StringIO.new,StringIO.new)
150
151
  kps.run
@@ -153,7 +154,7 @@ describe "Keybox Password Safe Application" do
153
154
 
154
155
  it "editing an entry in the database works" do
155
156
  kps = Keybox::Application::PasswordSafe.new(["-f", @testing_db.path, "-c", @testing_cfg.path, "--edit", "localhost"])
156
- prompted_values = [@passphrase] + %w(yes example.com example.com someother anewpassword anewpassword someinfo yes)
157
+ prompted_values = ["dark", @passphrase] + %w(yes example.com example.com someother anewpassword anewpassword someinfo yes)
157
158
  stdin = StringIO.new(prompted_values.join("\n"))
158
159
  kps.set_io(stdin,StringIO.new,StringIO.new)
159
160
  kps.run
@@ -163,7 +164,7 @@ describe "Keybox Password Safe Application" do
163
164
 
164
165
  it "add a url entry to the database" do
165
166
  kps = Keybox::Application::PasswordSafe.new(["-f", @testing_db.path, "-c", @testing_cfg.path, "--use-hash-for-url", "--add", "http://www.example.com"])
166
- prompted_values = [@passphrase] + %w(www.example.com http://www.example.com someuser noinfo yes)
167
+ prompted_values = ["dark", @passphrase] + %w(www.example.com http://www.example.com someuser noinfo yes)
167
168
  stdin = StringIO.new(prompted_values.join("\n"))
168
169
  kps.set_io(stdin,StringIO.new,StringIO.new)
169
170
  kps.run
@@ -174,7 +175,7 @@ describe "Keybox Password Safe Application" do
174
175
  kps = Keybox::Application::PasswordSafe.new(["-f", @testing_db.path,
175
176
  "-c", @testing_cfg.path,
176
177
  "--add", "example.com"])
177
- prompted_values = [@passphrase, ""] + %w(example.com someuser apassword abadpassword abcdef abcdef noinfo yes)
178
+ prompted_values = ["dark", @passphrase, ""] + %w(example.com someuser apassword abadpassword abcdef abcdef noinfo yes)
178
179
  stdin = StringIO.new(prompted_values.join("\n"))
179
180
  kps.set_io(stdin,StringIO.new,StringIO.new)
180
181
  kps.run
@@ -183,7 +184,7 @@ describe "Keybox Password Safe Application" do
183
184
 
184
185
  it "able to delete an entry" do
185
186
  kps = Keybox::Application::PasswordSafe.new(["-f", @testing_db.path, "-c", @testing_cfg.path, "--delete", "example"])
186
- prompted_values = [@passphrase] + %w(Yes)
187
+ prompted_values = ["dark", @passphrase] + %w(Yes)
187
188
  stdin = StringIO.new(prompted_values.join("\n"))
188
189
  kps.set_io(stdin,StringIO.new,StringIO.new)
189
190
  kps.run
@@ -193,7 +194,7 @@ describe "Keybox Password Safe Application" do
193
194
 
194
195
  it "able to cancel deletion" do
195
196
  kps = Keybox::Application::PasswordSafe.new(["-f", @testing_db.path, "-c", @testing_cfg.path, "--delete", "example"])
196
- prompted_values = [@passphrase] + %w(No)
197
+ prompted_values = ["dark", @passphrase] + %w(No)
197
198
  stdin = StringIO.new(prompted_values.join("\n"))
198
199
  kps.set_io(stdin,StringIO.new,StringIO.new)
199
200
  kps.run
@@ -203,7 +204,7 @@ describe "Keybox Password Safe Application" do
203
204
 
204
205
  it "list all the entries" do
205
206
  kps = Keybox::Application::PasswordSafe.new(["-f", @testing_db.path, "-c", @testing_cfg.path, "--list"])
206
- stdin = StringIO.new(@passphrase)
207
+ stdin = StringIO.new(["dark", @passphrase].join("\n"))
207
208
  kps.set_io(stdin,StringIO.new,StringIO.new)
208
209
  kps.run
209
210
  kps.stdout.string.should =~ /2./m
@@ -211,7 +212,7 @@ describe "Keybox Password Safe Application" do
211
212
 
212
213
  it "listing no entries found" do
213
214
  kps = Keybox::Application::PasswordSafe.new(["-f", @testing_db.path, "-c", @testing_cfg.path, "--list", "nothing"])
214
- stdin = StringIO.new(@passphrase)
215
+ stdin = StringIO.new(["dark", @passphrase].join("\n"))
215
216
  kps.set_io(stdin,StringIO.new,StringIO.new)
216
217
  kps.run
217
218
  kps.stdout.string.should =~ /No matching records were found./
@@ -219,7 +220,7 @@ describe "Keybox Password Safe Application" do
219
220
 
220
221
  it "showing no entries found" do
221
222
  kps = Keybox::Application::PasswordSafe.new(["-f", @testing_db.path, "-c", @testing_cfg.path, "--show", "nothing"])
222
- stdin = StringIO.new(@passphrase)
223
+ stdin = StringIO.new(["dark", @passphrase].join("\n"))
223
224
  kps.set_io(stdin,StringIO.new,StringIO.new)
224
225
  kps.run
225
226
  kps.stdout.string.should =~ /No matching records were found./
@@ -228,7 +229,7 @@ describe "Keybox Password Safe Application" do
228
229
 
229
230
  it "show all the entries" do
230
231
  kps = Keybox::Application::PasswordSafe.new(["-f", @testing_db.path, "-c", @testing_cfg.path, "--show"])
231
- stdin = StringIO.new([@passphrase, "", "", ""].join("\n"))
232
+ stdin = StringIO.new(["dark", @passphrase, "", "", ""].join("\n"))
232
233
  kps.set_io(stdin,StringIO.new,StringIO.new)
233
234
  kps.run
234
235
  kps.stdout.string.should =~ /2./m
@@ -236,7 +237,7 @@ describe "Keybox Password Safe Application" do
236
237
 
237
238
  it "changing master password works" do
238
239
  kps = Keybox::Application::PasswordSafe.new(["-f", @testing_db.path, "-c", @testing_cfg.path, "--master-password"])
239
- stdin = StringIO.new([@passphrase, "I really love ruby.", "I really love ruby."].join("\n"))
240
+ stdin = StringIO.new(["dark", @passphrase, "I really love ruby.", "I really love ruby."].join("\n"))
240
241
  kps.set_io(stdin,StringIO.new,StringIO.new)
241
242
  kps.run
242
243
  kps.stdout.string.should =~ /New master password set/m
@@ -244,7 +245,7 @@ describe "Keybox Password Safe Application" do
244
245
 
245
246
  it "master password must be non-zero" do
246
247
  kps = Keybox::Application::PasswordSafe.new(["-f", @testing_db.path, "-c", @testing_cfg.path, "--master-password"])
247
- stdin = StringIO.new([@passphrase, "", ""].join("\n"))
248
+ stdin = StringIO.new(["dark",@passphrase, "", ""].join("\n"))
248
249
  kps.set_io(stdin,StringIO.new,StringIO.new)
249
250
  begin
250
251
  kps.run
@@ -256,7 +257,7 @@ describe "Keybox Password Safe Application" do
256
257
 
257
258
  it "importing from a valid csv file" do
258
259
  kps = Keybox::Application::PasswordSafe.new(["-f", @testing_db.path, "-c", @testing_cfg.path,"-i", @import_csv.path])
259
- stdin = StringIO.new([@passphrase, @passphrase].join("\n"))
260
+ stdin = StringIO.new(["dark",@passphrase, @passphrase].join("\n"))
260
261
  kps.set_io(stdin,StringIO.new,StringIO.new)
261
262
  kps.run
262
263
  kps.stdout.string.should =~ /Imported \d* records from/m
@@ -264,7 +265,7 @@ describe "Keybox Password Safe Application" do
264
265
 
265
266
  it "Error message give on invalid imported csv" do
266
267
  kps = Keybox::Application::PasswordSafe.new(["-f", @testing_db.path, "-c", @testing_cfg.path,"-i", @bad_import_csv.path])
267
- stdin = StringIO.new([@passphrase, @passphrase].join("\n"))
268
+ stdin = StringIO.new(["dark",@passphrase, @passphrase].join("\n"))
268
269
  kps.set_io(stdin,StringIO.new,StringIO.new)
269
270
  begin
270
271
  kps.run
@@ -276,7 +277,7 @@ describe "Keybox Password Safe Application" do
276
277
 
277
278
  it "able to export to a csv" do
278
279
  kps = Keybox::Application::PasswordSafe.new(["-f", @testing_db.path, "-c", @testing_cfg.path,"-x", @export_csv.path])
279
- stdin = StringIO.new([@passphrase, @passphrase].join("\n"))
280
+ stdin = StringIO.new(["dark",@passphrase, @passphrase].join("\n"))
280
281
  kps.set_io(stdin,StringIO.new,StringIO.new)
281
282
  kps.run
282
283
  kps.stdout.string.should =~ /Exported \d* records to/m
@@ -284,14 +285,14 @@ describe "Keybox Password Safe Application" do
284
285
 
285
286
  it "able to turn off color schemes" do
286
287
  kps = Keybox::Application::PasswordSafe.new(["-f", @testing_db.path, "-c", @testing_cfg.path,"--color","none"])
287
- kps.set_io(StringIO.new(@passphrase),StringIO.new,StringIO.new)
288
+ kps.set_io(StringIO.new(["dark",@passphrase].join("\n")),StringIO.new,StringIO.new)
288
289
  kps.run
289
290
  kps.options.color_scheme.should == :none
290
291
  end
291
292
 
292
293
  it "an invalid color scheme results in a no color scheme" do
293
294
  kps = Keybox::Application::PasswordSafe.new(["-f", @testing_db.path, "-c", @testing_cfg.path,"--color","dne"])
294
- kps.set_io(StringIO.new(@passphrase),StringIO.new,StringIO.new)
295
+ kps.set_io(StringIO.new(["dark",@passphrase].join("\n")),StringIO.new,StringIO.new)
295
296
  kps.run
296
297
  kps.options.color_scheme.should == :none
297
298
  end
@@ -300,7 +301,7 @@ describe "Keybox Password Safe Application" do
300
301
  bad_color_scheme = { :bad => [:bold, :white, :on_magenta] }
301
302
  File.open("/tmp/test.color_scheme.yaml", "w+") { |f| f.write(bad_color_scheme.to_yaml) }
302
303
  kps = Keybox::Application::PasswordSafe.new(["-f", @testing_db.path, "-c", @testing_cfg.path,"--color","test"])
303
- kps.set_io(StringIO.new(@passphrase),StringIO.new,StringIO.new)
304
+ kps.set_io(StringIO.new(["dark",@passphrase].join("\n")),StringIO.new,StringIO.new)
304
305
  kps.run
305
306
 
306
307
  File.unlink("/tmp/test.color_scheme.yaml")
@@ -1,4 +1,4 @@
1
- require 'keybox'
1
+ require File.expand_path(File.join(File.dirname(__FILE__),"spec_helper.rb"))
2
2
  require 'keybox/application/password_generator'
3
3
 
4
4
  describe "Keybox Password Generator Application" do
@@ -1,4 +1,5 @@
1
- require 'keybox'
1
+ require File.expand_path(File.join(File.dirname(__FILE__),"spec_helper.rb"))
2
+
2
3
  describe "PasswordHash" do
3
4
  before(:each) do
4
5
  @pwd_hash = Keybox::PasswordHash.new("i love ruby")
@@ -1,4 +1,4 @@
1
- require 'keybox/randomizer'
1
+ require File.expand_path(File.join(File.dirname(__FILE__),"spec_helper.rb"))
2
2
 
3
3
  describe "a random device class" do
4
4
  it "should have a default source" do
@@ -0,0 +1,21 @@
1
+ begin
2
+ require 'rubygems'
3
+ require 'keybox'
4
+ require 'spec'
5
+ require 'stringio'
6
+ require 'tempfile'
7
+
8
+ # termios cannot be used during testing
9
+ begin
10
+ require 'termios'
11
+ raise "ERROR!!!! termios library found. It is not possible to run keybox tests with the termios library at this time."
12
+ exit 2
13
+ rescue LoadError
14
+ end
15
+
16
+ rescue LoadError
17
+ path = File.expand_path(File.join(File.dirname(__FILE__),"..","lib"))
18
+ raise if $:.include? path
19
+ $: << path
20
+ retry
21
+ end
@@ -1,10 +1,4 @@
1
- require 'keybox'
2
- require 'keybox/storage'
3
- require 'keybox/error'
4
- require 'keybox/entry'
5
- require 'openssl'
6
- require 'tempfile'
7
- require 'yaml'
1
+ require File.expand_path(File.join(File.dirname(__FILE__),"spec_helper.rb"))
8
2
 
9
3
  describe 'a storage container' do
10
4
  before(:each) do
@@ -1,4 +1,4 @@
1
- require 'keybox/storage'
1
+ require File.expand_path(File.join(File.dirname(__FILE__),"spec_helper.rb"))
2
2
 
3
3
  describe 'a storage record entry' do
4
4
  before(:each) do
@@ -1,4 +1,5 @@
1
- require 'keybox'
1
+ require File.expand_path(File.join(File.dirname(__FILE__),"spec_helper.rb"))
2
+
2
3
  describe Keybox::StringGenerator do
3
4
  before(:each) do
4
5
  @generator = Keybox::StringGenerator.new
@@ -1,4 +1,5 @@
1
- require 'keybox/uuid'
1
+ require File.expand_path(File.join(File.dirname(__FILE__),"spec_helper.rb"))
2
+
2
3
  describe "UUID class" do
3
4
  it "should have 16 bytes" do
4
5
  uuid = Keybox::UUID.new
metadata CHANGED
@@ -1,27 +1,26 @@
1
1
  --- !ruby/object:Gem::Specification
2
- rubygems_version: 0.9.2
2
+ rubygems_version: 0.9.4
3
3
  specification_version: 1
4
4
  name: keybox
5
5
  version: !ruby/object:Gem::Version
6
- version: 1.1.1
7
- date: 2007-06-21 00:00:00 -06:00
8
- summary: Keybox is a set of command line applications and ruby libraries for secure password storage and password generation.
6
+ version: 1.2.0
7
+ date: 2007-09-09 00:00:00 -06:00
8
+ summary: Secure pasword storage.
9
9
  require_paths:
10
10
  - lib
11
- - lib
12
11
  email: jeremy@hinegardner.org
13
12
  homepage: http://keybox.rubyforge.org
14
13
  rubyforge_project: keybox
15
- description: Keybox is a set of command line applications and ruby libraries for secure password storage and password generation.
14
+ description: A set of command line applications and ruby libraries for secure password storage and password generation.
16
15
  autorequire:
17
- default_executable:
16
+ default_executable: keybox
18
17
  bindir: bin
19
18
  has_rdoc: true
20
19
  required_ruby_version: !ruby/object:Gem::Version::Requirement
21
20
  requirements:
22
- - - ">"
21
+ - - ">="
23
22
  - !ruby/object:Gem::Version
24
- version: 0.0.0
23
+ version: 1.8.5
25
24
  version:
26
25
  platform: ruby
27
26
  signing_key:
@@ -30,62 +29,71 @@ post_install_message: "\e[1m\e[31m\e[40mTry `keybox --help` for more information
30
29
  authors:
31
30
  - Jeremy Hinegardner
32
31
  files:
33
- - data/dark_bg.color_scheme.yaml
34
- - data/chargrams.txt
35
- - data/light_bg.color_scheme.yaml
36
- - vendor/highline/highline.rb
37
- - vendor/highline/highline/system_extensions.rb
38
- - vendor/highline/highline/question.rb
39
- - vendor/highline/highline/color_scheme.rb
40
- - vendor/highline/highline/menu.rb
41
- - vendor/highline/highline/import.rb
42
- - spec/kpg_app_spec.rb
43
- - spec/convert_csv_spec.rb
44
- - spec/storage_record_spec.rb
45
- - spec/storage_container_spec.rb
46
- - spec/uuid_spec.rb
47
32
  - spec/base_app_spec.rb
33
+ - spec/convert_csv_spec.rb
48
34
  - spec/entry_spec.rb
49
35
  - spec/keybox_app_spec.rb
50
- - spec/string_generator_spec.rb
36
+ - spec/kpg_app_spec.rb
51
37
  - spec/password_hash_spec.rb
52
38
  - spec/randomizer_spec.rb
53
- - lib/keybox/storage/container.rb
54
- - lib/keybox/storage/record.rb
55
- - lib/keybox/convert/csv.rb
39
+ - spec/spec_helper.rb
40
+ - spec/storage_container_spec.rb
41
+ - spec/storage_record_spec.rb
42
+ - spec/string_generator_spec.rb
43
+ - spec/uuid_spec.rb
44
+ - CHANGES
45
+ - COPYING
46
+ - README
56
47
  - lib/keybox/application/base.rb
57
48
  - lib/keybox/application/password_generator.rb
58
49
  - lib/keybox/application/password_safe.rb
59
- - lib/keybox/highline_util.rb
60
50
  - lib/keybox/cipher.rb
61
- - lib/keybox/error.rb
62
- - lib/keybox/randomizer.rb
63
- - lib/keybox/uuid.rb
64
- - lib/keybox/digest.rb
51
+ - lib/keybox/convert/csv.rb
65
52
  - lib/keybox/convert.rb
53
+ - lib/keybox/digest.rb
66
54
  - lib/keybox/entry.rb
67
- - lib/keybox/string_generator.rb
55
+ - lib/keybox/error.rb
56
+ - lib/keybox/gemspec.rb
57
+ - lib/keybox/highline_util.rb
68
58
  - lib/keybox/password_hash.rb
59
+ - lib/keybox/randomizer.rb
60
+ - lib/keybox/specification.rb
61
+ - lib/keybox/storage/container.rb
62
+ - lib/keybox/storage/record.rb
69
63
  - lib/keybox/storage.rb
64
+ - lib/keybox/string_generator.rb
65
+ - lib/keybox/uuid.rb
66
+ - lib/keybox/version.rb
70
67
  - lib/keybox.rb
68
+ - resources/chargrams.txt
69
+ - resources/dark_bg.color_scheme.yaml
70
+ - resources/light_bg.color_scheme.yaml
71
71
  - bin/keybox
72
72
  - bin/kpg
73
- - README
74
- - CHANGES
75
- - COPYING
76
- test_files: []
77
-
73
+ test_files:
74
+ - spec/base_app_spec.rb
75
+ - spec/convert_csv_spec.rb
76
+ - spec/entry_spec.rb
77
+ - spec/keybox_app_spec.rb
78
+ - spec/kpg_app_spec.rb
79
+ - spec/password_hash_spec.rb
80
+ - spec/randomizer_spec.rb
81
+ - spec/spec_helper.rb
82
+ - spec/storage_container_spec.rb
83
+ - spec/storage_record_spec.rb
84
+ - spec/string_generator_spec.rb
85
+ - spec/uuid_spec.rb
78
86
  rdoc_options:
79
87
  - --line-numbers
80
88
  - --inline-source
81
- - --title
82
- - keybox - 1.1.1
83
89
  - --main
84
90
  - README
91
+ - --title
92
+ - "'keybox -- Secure pasword storage.'"
85
93
  extra_rdoc_files:
86
- - README
87
94
  - CHANGES
88
95
  - COPYING
96
+ - README
89
97
  executables:
90
98
  - keybox
91
99
  - kpg
@@ -101,5 +109,5 @@ dependencies:
101
109
  requirements:
102
110
  - - ">="
103
111
  - !ruby/object:Gem::Version
104
- version: 1.2.6
112
+ version: 1.4.0
105
113
  version: