oro 1.0.1 → 1.0.3
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.
- checksums.yaml +5 -5
- data/LICENSE.textile +1 -1
- data/README.md +3 -2
- data/lib/oro/defaults.yml +15 -17
- data/lib/oro/parts.rb +1 -1
- data/lib/oro/settings_parser.rb +1 -1
- data/oro.gemspec +5 -5
- metadata +9 -10
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 23ad5d29a7536dd6bcc643127b5e1a20c6b850676155c614fa9a88d51dd85cf7
|
|
4
|
+
data.tar.gz: 7193c422ed49a0968fccfed25d66e874627a4a0d0891aba706d39e08e3d9c69a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a86c6d838cd09b5ebf13227968469c3489e048c38ede8de18f3681af3fad8d80c97e55330f150a74551bf977d23637b82aac431a7ac6b7e574946fc28dfafee7
|
|
7
|
+
data.tar.gz: 046a650c8f27d7e2e35878f3790ed1bd566f232f6f41a486ba4acc884bb0a311cbfa42f2702b09eec0d89d9cf0ce4cd93ed7eb4d2e5404e1d93946fe66a5a0fb
|
data/LICENSE.textile
CHANGED
data/README.md
CHANGED
|
@@ -17,6 +17,7 @@ A flexible, command-line utility which generates memorable passwords.
|
|
|
17
17
|
e[n] English part
|
|
18
18
|
m[n] Emoticon part
|
|
19
19
|
b[n] Braille part
|
|
20
|
+
h[n] Alphabet part
|
|
20
21
|
|
|
21
22
|
Config settings
|
|
22
23
|
-i, --iterations=MANDATORY The number of passwords to generate
|
|
@@ -43,7 +44,7 @@ A flexible, command-line utility which generates memorable passwords.
|
|
|
43
44
|
oro n99 -i10
|
|
44
45
|
oro e10 n5 -fjson
|
|
45
46
|
|
|
46
|
-
See dictionary source files for associated
|
|
47
|
+
See dictionary source files for associated licence attributions.
|
|
47
48
|
|
|
48
49
|
## License
|
|
49
50
|
|
|
@@ -51,7 +52,7 @@ http://opensource.org/licenses/mit-license.php
|
|
|
51
52
|
|
|
52
53
|
The MIT License (MIT)
|
|
53
54
|
|
|
54
|
-
Copyright (c) 2015
|
|
55
|
+
Copyright (c) 2015 Bayou Marcus
|
|
55
56
|
|
|
56
57
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
57
58
|
of this software and associated documentation files (the "Software"), to deal
|
data/lib/oro/defaults.yml
CHANGED
|
@@ -1,19 +1,17 @@
|
|
|
1
1
|
--- !ruby/object:OpenStruct
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
-
|
|
5
|
-
|
|
6
|
-
-
|
|
7
|
-
|
|
8
|
-
-
|
|
9
|
-
|
|
10
|
-
:
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
:separator: "\n" # Requires double quotes
|
|
18
|
-
|
|
2
|
+
:plan:
|
|
3
|
+
- - English
|
|
4
|
+
- 8
|
|
5
|
+
- - Punctuation
|
|
6
|
+
- 1
|
|
7
|
+
- - Number
|
|
8
|
+
- 3
|
|
9
|
+
:config:
|
|
10
|
+
:iterations: 5
|
|
11
|
+
:capitalize: true
|
|
12
|
+
:capitalize_random: false
|
|
13
|
+
:l33t: false
|
|
14
|
+
:shuffle: false
|
|
15
|
+
:format: 'string'
|
|
16
|
+
:separator: "\n" # Requires double quotes
|
|
19
17
|
modifiable: true
|
data/lib/oro/parts.rb
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Class representing a password plan part, which map to installed
|
|
1
|
+
# Class representing a password plan part, which map to installed part lists
|
|
2
2
|
class Part
|
|
3
3
|
LEET = { 'a' => ['@'], 'b' => ['|3'], 'd' => ['|)'], 'e' => ['3'], 'f' => ['ph'], 'i' => ['|'], 'k' => ['|<'],
|
|
4
4
|
'l' => ['|_'], 'o' => ['0'], 'p' => ['|*'], 's' => ['$', '5'], 'w' => ["'//"] }
|
data/lib/oro/settings_parser.rb
CHANGED
|
@@ -9,7 +9,7 @@ class SettingsParser
|
|
|
9
9
|
clio_parser = OptionParser.new do |clio_parser_config|
|
|
10
10
|
clio_parser_config.program_name = 'Oro'
|
|
11
11
|
clio_parser_config.release = 'Command Line Version'
|
|
12
|
-
clio_parser_config.version = %w(1 0
|
|
12
|
+
clio_parser_config.version = %w(1 0 3)
|
|
13
13
|
clio_parser_config.banner = 'Usage: oro [settings]'
|
|
14
14
|
clio_parser_config.separator ''
|
|
15
15
|
|
data/oro.gemspec
CHANGED
|
@@ -2,15 +2,15 @@ require 'rake' # Provide FileList class
|
|
|
2
2
|
|
|
3
3
|
Gem::Specification.new do |s|
|
|
4
4
|
s.name = 'oro'
|
|
5
|
-
s.version = '1.0.
|
|
6
|
-
s.date = '
|
|
5
|
+
s.version = '1.0.3'
|
|
6
|
+
s.date = '2021-05-11'
|
|
7
7
|
s.summary = 'Oro for passwords...'
|
|
8
8
|
s.description = 'A flexible, command-line utility which generates memorable passwords. The enemy knows the system -- Claude Shannon / Auguste Kerckhoffs'
|
|
9
|
-
s.authors = ['
|
|
9
|
+
s.authors = ['Bayou Marcus']
|
|
10
10
|
s.email = 'bayou.marcus@gmail.com'
|
|
11
11
|
s.executables = ['oro']
|
|
12
12
|
s.files = FileList['**/**/*']
|
|
13
13
|
s.homepage = 'https://github.com/bayou-marcus/oro'
|
|
14
|
-
s.license = '
|
|
15
|
-
s.required_ruby_version = '~> 2.
|
|
14
|
+
s.license = 'MIT' # http://choosealicense.com ; https://spdx.org/licenses/MIT.html
|
|
15
|
+
s.required_ruby_version = '~> 2.6'
|
|
16
16
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: oro
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
|
-
-
|
|
8
|
-
autorequire:
|
|
7
|
+
- Bayou Marcus
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2021-05-11 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: A flexible, command-line utility which generates memorable passwords.
|
|
14
14
|
The enemy knows the system -- Claude Shannon / Auguste Kerckhoffs
|
|
@@ -43,9 +43,9 @@ files:
|
|
|
43
43
|
- test/preference_test.rb
|
|
44
44
|
homepage: https://github.com/bayou-marcus/oro
|
|
45
45
|
licenses:
|
|
46
|
-
-
|
|
46
|
+
- MIT
|
|
47
47
|
metadata: {}
|
|
48
|
-
post_install_message:
|
|
48
|
+
post_install_message:
|
|
49
49
|
rdoc_options: []
|
|
50
50
|
require_paths:
|
|
51
51
|
- lib
|
|
@@ -53,16 +53,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
53
53
|
requirements:
|
|
54
54
|
- - "~>"
|
|
55
55
|
- !ruby/object:Gem::Version
|
|
56
|
-
version: '2.
|
|
56
|
+
version: '2.6'
|
|
57
57
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
58
58
|
requirements:
|
|
59
59
|
- - ">="
|
|
60
60
|
- !ruby/object:Gem::Version
|
|
61
61
|
version: '0'
|
|
62
62
|
requirements: []
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
signing_key:
|
|
63
|
+
rubygems_version: 3.0.8
|
|
64
|
+
signing_key:
|
|
66
65
|
specification_version: 4
|
|
67
66
|
summary: Oro for passwords...
|
|
68
67
|
test_files: []
|