oro 1.0.1 → 1.0.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 39ff41d2fd8d65b944b5aefd4ff70c56e6434a86
4
- data.tar.gz: a6b8c79dafe47f01c0f242156cf473cbfa6cce11
2
+ SHA256:
3
+ metadata.gz: 23ad5d29a7536dd6bcc643127b5e1a20c6b850676155c614fa9a88d51dd85cf7
4
+ data.tar.gz: 7193c422ed49a0968fccfed25d66e874627a4a0d0891aba706d39e08e3d9c69a
5
5
  SHA512:
6
- metadata.gz: 039c12cf3e395eff26aa79198aabb847a76fb52c1ce444245b9288abca5a7f6c53217d73b30e308379d5900bebd08bbb889a3d52d18f9b87237a73206618cb1e
7
- data.tar.gz: 1a088e5db638891756ed9327aeb5e33d5012e6ed2d65ecd69023d0ffab4778ca1c59fa87f2ff576dfcdefaf8ce00ba00ffcbdcd23f49255d131a7d2e818bb7c7
6
+ metadata.gz: a86c6d838cd09b5ebf13227968469c3489e048c38ede8de18f3681af3fad8d80c97e55330f150a74551bf977d23637b82aac431a7ac6b7e574946fc28dfafee7
7
+ data.tar.gz: 046a650c8f27d7e2e35878f3790ed1bd566f232f6f41a486ba4acc884bb0a311cbfa42f2702b09eec0d89d9cf0ce4cd93ed7eb4d2e5404e1d93946fe66a5a0fb
data/LICENSE.textile CHANGED
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2015 Joel Wagener
3
+ Copyright (c) 2015 Bayou Marcus
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
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 license attributions.
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 Joel Wagener
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
- table:
3
- :plan:
4
- - - English
5
- - 8
6
- - - Punctuation
7
- - 1
8
- - - Number
9
- - 3
10
- :config:
11
- :iterations: 5
12
- :capitalize: true
13
- :capitalize_random: false
14
- :l33t: false
15
- :shuffle: false
16
- :format: 'string'
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 psrt lists
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' => ["'//"] }
@@ -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 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.1'
6
- s.date = '2016-03-25'
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 = ['Joel Wagener']
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 = 'The MIT License.' # http://choosealicense.com
15
- s.required_ruby_version = '~> 2.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.1
4
+ version: 1.0.3
5
5
  platform: ruby
6
6
  authors:
7
- - Joel Wagener
8
- autorequire:
7
+ - Bayou Marcus
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-03-25 00:00:00.000000000 Z
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
- - The MIT License.
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.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
- rubyforge_project:
64
- rubygems_version: 2.4.8
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: []