safe 0.7 → 0.8
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/README +1 -0
- data/Rakefile +1 -1
- data/Release-Notes.txt +4 -0
- data/bin/safe +4 -4
- metadata +1 -1
data/README
CHANGED
data/Rakefile
CHANGED
|
@@ -7,7 +7,7 @@ gem_spec = Gem::Specification.new do |spec|
|
|
|
7
7
|
spec.summary = 'A command-line password storage program'
|
|
8
8
|
spec.description = %{safe safely stores all your user IDs and passwords,
|
|
9
9
|
encrypted by a password of your choosing.}
|
|
10
|
-
spec.version = '0.
|
|
10
|
+
spec.version = '0.8'
|
|
11
11
|
|
|
12
12
|
# Author information
|
|
13
13
|
spec.author = 'Rob Warner'
|
data/Release-Notes.txt
CHANGED
data/bin/safe
CHANGED
|
@@ -38,14 +38,14 @@
|
|
|
38
38
|
require 'rubygems'
|
|
39
39
|
require 'optparse'
|
|
40
40
|
|
|
41
|
-
require File.join(
|
|
42
|
-
require File.join(
|
|
43
|
-
require File.join(
|
|
41
|
+
require File.join(File.dirname(__FILE__), '..', 'lib', 'safeentry')
|
|
42
|
+
require File.join(File.dirname(__FILE__), '..', 'lib', 'safefile')
|
|
43
|
+
require File.join(File.dirname(__FILE__), '..', 'lib', 'safeutils')
|
|
44
44
|
|
|
45
45
|
# TODO support list <NAME> without -l flag
|
|
46
46
|
|
|
47
47
|
class Safe
|
|
48
|
-
SAFE_VERSION = '0.
|
|
48
|
+
SAFE_VERSION = '0.8'
|
|
49
49
|
|
|
50
50
|
# Gets the command line
|
|
51
51
|
def self.get_command_line
|