pwqgen.rb 0.0.3.pre.1 → 0.0.3.pre.2

Sign up to get free protection for your applications and to get access to all the features.
data/.travis.yml CHANGED
@@ -5,3 +5,8 @@ rvm:
5
5
  - jruby-19mode
6
6
  - ruby-head
7
7
  - jruby-head
8
+
9
+ matrix:
10
+ allow_failures:
11
+ - rvm: jruby-head
12
+ - rvm: jruby-19mode
data/ChangeLog CHANGED
@@ -3,6 +3,9 @@
3
3
  * Improved CLI output.
4
4
  * `Pwqgen.new` now works.
5
5
  * Updated documentation with better usage examples.
6
+ * Forked and included docopt.rb, to workaround overly high rubygems
7
+ version requirement.
8
+ * Use a high-quality, secure random number generator.
6
9
 
7
10
  = 0.0.2 / 2012-06-29
8
11
 
data/lib/pwqgen/pwqgen.rb CHANGED
@@ -1,4 +1,5 @@
1
1
  require 'pwqgen/wordlist'
2
+ require 'securerandom'
2
3
 
3
4
  # Public: Pwqgen is a Ruby implementation of passwdqc's pwqgen password
4
5
  # generator.
@@ -45,7 +46,7 @@ module Pwqgen
45
46
  @@wordlist_size = @@wordlist.length
46
47
  @@separators = "-_!$&*+=23456789".split(//)
47
48
  @@separators_size = @@separators.length
48
- @rand = Random.new
49
+ @rand = SecureRandom
49
50
  end
50
51
 
51
52
  # Public: Returns a random generated password string.
@@ -64,10 +65,10 @@ module Pwqgen
64
65
  def generate(length = 3)
65
66
  output = Array.new
66
67
  for i in 1..length
67
- output << @@wordlist[@rand.rand(@@wordlist_size)]
68
- output[i-1] = output[i-1].capitalize if @rand.rand(2)
68
+ output << @@wordlist[@rand.random_number(@@wordlist_size)]
69
+ output[i-1] = output[i-1].capitalize if @rand.random_number(2)
69
70
 
70
- output << @@separators[@rand.rand(@@separators_size)] unless i == length
71
+ output << @@separators[@rand.random_number(@@separators_size)] unless i == length
71
72
  end
72
73
  output.join
73
74
  end
@@ -1,3 +1,3 @@
1
1
  module Pwqgen
2
- VERSION = "0.0.3.pre.1"
2
+ VERSION = "0.0.3.pre.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pwqgen.rb
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3.pre.1
4
+ version: 0.0.3.pre.2
5
5
  prerelease: 6
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-07-01 00:00:00.000000000 Z
12
+ date: 2012-07-06 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rake