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.
Files changed (5) hide show
  1. data/README +1 -0
  2. data/Rakefile +1 -1
  3. data/Release-Notes.txt +4 -0
  4. data/bin/safe +4 -4
  5. metadata +1 -1
data/README CHANGED
@@ -68,6 +68,7 @@ Windows:
68
68
  0.5 -- April 6, 2008
69
69
  0.6 -- December 16, 2010
70
70
  0.7 -- February 18, 2011
71
+ 0.8 -- February 18, 2011
71
72
 
72
73
  See Release-Notes.txt for more information
73
74
 
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.7'
10
+ spec.version = '0.8'
11
11
 
12
12
  # Author information
13
13
  spec.author = 'Rob Warner'
@@ -1,5 +1,9 @@
1
1
  Safe Release Notes
2
2
  ------------------
3
+ 0.8 (February 18, 2011)
4
+ -----------------------
5
+ [FIXED] Packaging problem with 0.7
6
+
3
7
  0.7 (February 18, 2011)
4
8
  -----------------------
5
9
  [FIXED] Monkey patch crypt/blowfish so that safe runs under ruby 1.9
data/bin/safe CHANGED
@@ -38,14 +38,14 @@
38
38
  require 'rubygems'
39
39
  require 'optparse'
40
40
 
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')
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.7'
48
+ SAFE_VERSION = '0.8'
49
49
 
50
50
  # Gets the command line
51
51
  def self.get_command_line
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: safe
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: "0.7"
5
+ version: "0.8"
6
6
  platform: ruby
7
7
  authors:
8
8
  - Rob Warner