pwqgen.rb 0.0.1.pre
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/.gitignore +6 -0
- data/Gemfile +2 -0
- data/bin/pwqgen.rb +1 -0
- data/lib/pwqgen.rb +5 -0
- data/lib/pwqgen/version.rb +3 -0
- data/lib/pwqgen/wordlist.rb +4158 -0
- data/pwqgen.rb.gemspec +17 -0
- metadata +52 -0
data/pwqgen.rb.gemspec
ADDED
@@ -0,0 +1,17 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
$:.push File.expand_path("../lib", __FILE__)
|
3
|
+
require 'pwqgen/version'
|
4
|
+
|
5
|
+
Gem::Specification.new do |s|
|
6
|
+
s.name = 'pwqgen.rb'
|
7
|
+
s.version = Pwqgen::VERSION
|
8
|
+
s.summary = "pwqgen in Ruby"
|
9
|
+
s.description = "pwqgen.rb implements passwdqc's pwqgen in Ruby."
|
10
|
+
s.authors = ["Ronald Ip"]
|
11
|
+
s.email = 'myself@iphoting.com'
|
12
|
+
s.require_paths = ['lib']
|
13
|
+
s.files = `git ls-files`.split("\n")
|
14
|
+
s.homepage = 'https://github.com/iphoting/pwqgen.rb'
|
15
|
+
s.has_rdoc = false
|
16
|
+
s.executables << 'pwqgen.rb'
|
17
|
+
end
|
metadata
ADDED
@@ -0,0 +1,52 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: pwqgen.rb
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1.pre
|
5
|
+
prerelease: 6
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Ronald Ip
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2012-06-28 00:00:00.000000000 Z
|
13
|
+
dependencies: []
|
14
|
+
description: pwqgen.rb implements passwdqc's pwqgen in Ruby.
|
15
|
+
email: myself@iphoting.com
|
16
|
+
executables:
|
17
|
+
- pwqgen.rb
|
18
|
+
extensions: []
|
19
|
+
extra_rdoc_files: []
|
20
|
+
files:
|
21
|
+
- .gitignore
|
22
|
+
- Gemfile
|
23
|
+
- bin/pwqgen.rb
|
24
|
+
- lib/pwqgen.rb
|
25
|
+
- lib/pwqgen/version.rb
|
26
|
+
- lib/pwqgen/wordlist.rb
|
27
|
+
- pwqgen.rb.gemspec
|
28
|
+
homepage: https://github.com/iphoting/pwqgen.rb
|
29
|
+
licenses: []
|
30
|
+
post_install_message:
|
31
|
+
rdoc_options: []
|
32
|
+
require_paths:
|
33
|
+
- lib
|
34
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
35
|
+
none: false
|
36
|
+
requirements:
|
37
|
+
- - ! '>='
|
38
|
+
- !ruby/object:Gem::Version
|
39
|
+
version: '0'
|
40
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
41
|
+
none: false
|
42
|
+
requirements:
|
43
|
+
- - ! '>'
|
44
|
+
- !ruby/object:Gem::Version
|
45
|
+
version: 1.3.1
|
46
|
+
requirements: []
|
47
|
+
rubyforge_project:
|
48
|
+
rubygems_version: 1.8.23
|
49
|
+
signing_key:
|
50
|
+
specification_version: 3
|
51
|
+
summary: pwqgen in Ruby
|
52
|
+
test_files: []
|