moat 0.0.5 → 0.0.6

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/History.txt CHANGED
@@ -27,3 +27,10 @@
27
27
  * 1 major enhancement:
28
28
 
29
29
  * Bugfix for generate (-G) command-line argument
30
+
31
+ === 0.0.6 / 2010-04-02
32
+
33
+ * 1 major enhancement:
34
+
35
+ * Hacky fix to off-by-one bug when generating password with --length argument
36
+
data/bin/moat CHANGED
@@ -32,7 +32,7 @@ option_parser = OptionParser.new do |option_parser|
32
32
  end
33
33
 
34
34
  option_parser.on("-l", "--length length") do |length|
35
- @length = length.to_i
35
+ @length = length.to_i - 1
36
36
  end
37
37
 
38
38
  option_parser.on("-G", "--generating_set site") do |site|
data/moat-0.0.5.gem ADDED
Binary file
data/moat.gemspec CHANGED
@@ -2,7 +2,7 @@ require 'rubygems'
2
2
 
3
3
  SPEC = Gem::Specification.new do |s|
4
4
  s.name = "moat"
5
- s.version = "0.0.5"
5
+ s.version = "0.0.6"
6
6
  s.author = "Bryan Woods"
7
7
  s.email = "bryanwoods4e@gmail.com"
8
8
  s.platform = Gem::Platform::RUBY
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 0
8
- - 5
9
- version: 0.0.5
8
+ - 6
9
+ version: 0.0.6
10
10
  platform: ruby
11
11
  authors:
12
12
  - Bryan Woods
@@ -31,7 +31,7 @@ files:
31
31
  - History.txt
32
32
  - lib/moat.rb
33
33
  - Manifest.txt
34
- - moat-0.0.4.gem
34
+ - moat-0.0.5.gem
35
35
  - moat.gemspec
36
36
  - Rakefile
37
37
  - README.txt
data/moat-0.0.4.gem DELETED
Binary file