sonic_pass 0.2.1 → 1.0.1

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 03e4a2e45c294c05b0f9a731d4b1ea486a682b48ccf88bee3704bd173852980c
4
- data.tar.gz: a584318ca8872d323452cdb483951aa6476fb29b9ddfd15290855fe69ea2763d
3
+ metadata.gz: a1c4a6286b2d93f78db52e719f7f28f702751c9240b30ec4a2ecad442d0d68f6
4
+ data.tar.gz: '089e15a109f23d546ed21716560df086e99af335bf3cc292ad6d6eb0e252d300'
5
5
  SHA512:
6
- metadata.gz: 4dacbdd5965f0ff8c1058910094392eb38a021c8d52b8da3aed02f24fba1c149628c70314650f31d762e20587df71373a80ce65f3b12751499b8b3d74c8fd2ee
7
- data.tar.gz: 399abfa3c530b420ad42823c6a7ac5a3460c371fe147a441062465333b9816e9013ef294671efa899b52a65fb5f537f46d5a7c9fb05ec9fccc1929a5f68c4927
6
+ metadata.gz: 4250bd1b0bad9e1303767162a0dcc11abd2f3ca2c8cb83840cdfae30194389ecfdc7312c5172797d698dceaeb6299df14aed2d10f79ea62c65235cbd06db9008
7
+ data.tar.gz: aff82dfb93cefa920c3b852aab3b797398e6c067e245d85d643e7af541e16d27f8368d760ebe5a52221f3d04a737c3feaac2ea43636fe87096186030826ce590
data/.rubocop.yml CHANGED
@@ -8,12 +8,9 @@ inherit_gem:
8
8
  rubocop-rake:
9
9
  - config/default.yml
10
10
 
11
+ # Rake:
12
+ # Enabled: true
13
+
11
14
  AllCops:
12
- TargetRubyVersion: 3.x
15
+ DisabledByDefault: true
13
16
  NewCops: enable
14
-
15
- # Style/StringLiterals:
16
- # EnforcedStyle: double_quotes
17
-
18
- # Style/StringLiteralsInInterpolation:
19
- # EnforcedStyle: double_quotes
data/README.md CHANGED
@@ -1,11 +1,15 @@
1
+ ![Ruby version](https://img.shields.io/badge/ruby-%3E%3D2.4.0-brightgreen?logo=ruby&logoColor=red)
2
+ ![RubyGem version](https://img.shields.io/gem/v/sonic_pass?color=%25234cc61f&label=Gem%20version&logo=rubygems&logoColor=red&link=https%3A%2F%2Frubygems.org%2Fgems%2Fsonic_pass)
3
+ ![RubyGem download](https://img.shields.io/gem/dt/sonic_pass?color=%2330c754&label=Downloads&logo=rubygems&logoColor=red&link=https%3A%2F%2Frubygems.org%2Fgems%2Fsonic_pass)
4
+ ![Rubocop](https://img.shields.io/github/actions/workflow/status/papakvy/sonic_pass/main.yml?branch=master&logo=rubocop&logoColor=red&label=Rubocop%20Lint)
5
+ ![Test](https://img.shields.io/github/actions/workflow/status/papakvy/sonic_pass/main.yml?branch=master&logo=rubocop&logoColor=red&label=Tests%20%F0%9F%A7%AA)
6
+
1
7
  Table of Contents
2
8
  -----------------
3
9
 
4
10
  * [Overview](#overview)
5
11
  * [Installation](#installation)
6
12
  * [Usage](#usage)
7
- * [Configuration](#configuration)
8
- * [Methods](#methods)
9
13
  * [Contributing](#contributing)
10
14
  * [License](#license)
11
15
 
@@ -40,31 +44,67 @@ require 'sonic_pass'
40
44
  You can then generate a password using the `SonicPass.generate` method:
41
45
 
42
46
  ```ruby
43
- password = SonicPass.generate(length: 12)
47
+ # Default `length = 12`
48
+ password = SonicPass.generate # equals `SonicPass.generate(12)`
44
49
  puts password
50
+
51
+ # cpzmh3OV\",C7
52
+ ```
53
+
54
+ Or you can generate multiple passwords, using `count > 1` params
55
+
56
+ ```ruby
57
+ passwords = SonicPass.generate(12, 5)
58
+ puts passwords
59
+
60
+ # ,Y36.9H-XqS;
61
+ # vRzCyIq.=$W5
62
+ # 1}-'D*'ya$Vg
63
+ # %66db&y$rjhU
64
+ # x';2I7y$<&5f
45
65
  ```
46
66
 
47
- This will output a strong password of the specified length.
67
+ ### How to use CLI command `sonic_pass`
48
68
 
49
- ### Configuration
69
+ - Put executable path into `PATH` directly
50
70
 
51
- The Sonic Pass gem can be configured to use different character sets for password generation. The available character sets are:
71
+ ```bash
72
+ gem_bin_path=$(gem env | grep "EXECUTABLE DIRECTORY" | awk -F ': ' '{print $2}')
73
+ export PATH="$PATH:$gem_bin_path"
74
+ ```
52
75
 
53
- * `ALPHANUMERIC_CHARSETS`: A combination of uppercase letters, lowercase letters, and digits.
54
- * `SPECIAL_CHARSETS`: A set of special characters.
76
+ - Put executable path into `PATH` in the appropriate configuration file
55
77
 
56
- You can specify the character set to use when generating a password:
78
+ Assume executable path is: `/home/user/.asdf/installs/ruby/3.0.0/bin`
57
79
 
58
- ```ruby
59
- password = SonicPass.generate(length: 12, charset: SonicPass::ALPHANUMERIC_CHARSETS)
60
- puts password
80
+ For bash (usually ~/.bashrc or ~/.bash_profile):
81
+
82
+ ```bash
83
+ echo 'export PATH="$PATH:/home/user/.asdf/installs/ruby/3.0.0/bin"' >> ~/.bashrc
84
+ source ~/.bashrc
61
85
  ```
62
86
 
63
- ### Methods
64
87
 
65
- The Sonic Pass gem provides the following methods:
88
+ For zsh (usually ~/.zshrc):
66
89
 
67
- * `SonicPass.generate(length: 12, charset: SonicPass::ALPHANUMERIC_CHARSETS)`: Generates a strong password of the specified length using the specified character set.
90
+ ```bash
91
+ echo 'export PATH="$PATH:/home/user/.asdf/installs/ruby/3.0.0/bin"' >> ~/.zshrc
92
+ source ~/.zshrc
93
+ ```
94
+
95
+ Verify the change: After updating your configuration file, you can check if the new path has been added by running:
96
+
97
+ ```bash
98
+ echo $PATH
99
+ ```
100
+
101
+ Finally, run CLI command:
102
+
103
+ ```bash
104
+ $ sonic_pass
105
+
106
+ # Password: mM>]3ERLlD5L copied to clipboard
107
+ ```
68
108
 
69
109
  ### Contributing
70
110
 
@@ -72,4 +112,4 @@ Contributions to the Sonic Pass gem are welcome. To contribute, please fork the
72
112
 
73
113
  ### License
74
114
 
75
- The Sonic Pass gem is released under the MIT License. See the LICENSE file for details.
115
+ The Sonic Pass gem is released under the MIT License. See the LICENSE file for details.
data/bin/sonic_pass CHANGED
@@ -2,6 +2,7 @@
2
2
  # frozen_string_literal: true
3
3
 
4
4
  require_relative '../lib/sonic_pass'
5
+ require_relative '../cli_ext/base'
5
6
  require 'clipboard'
6
7
 
7
8
  length = ARGV[0] ? ARGV[0].to_i : 12
@@ -9,10 +10,14 @@ count = ARGV[1] ? ARGV[1].to_i : 1
9
10
 
10
11
  passwords = SonicPass.generate(length, count)
11
12
 
12
- # Copy the generated password to the clipboard
13
13
  if count == 1
14
- Clipboard.copy(passwords[0])
15
- puts "Password: #{passwords[0]} copied to clipboard"
14
+ Clipboard.copy(passwords)
15
+ puts "Password: #{passwords} copied to clipboard"
16
16
  else
17
- puts passwords.join("\n")
17
+ begin
18
+ # puts "#{count} passwords generated:"
19
+ SonicPass::CLI.call(passwords)
20
+ rescue StandardError => _e
21
+ puts passwords.join("\n")
22
+ end
18
23
  end
data/cli_ext/base.rb ADDED
@@ -0,0 +1,24 @@
1
+ require 'terminal-table'
2
+
3
+ module SonicPass
4
+ class CLI
5
+
6
+ def initialize(pwds)
7
+ @pwds = pwds
8
+ end
9
+
10
+ def self.call(*args, &block)
11
+ new(*args, &block).print
12
+ end
13
+
14
+ def print
15
+ rows = @pwds.each_with_index.map { |value, index| [index.next, value] }
16
+
17
+ table = Terminal::Table.new :title => "Passwords generated", :rows => rows
18
+ table.align_column(1, :center)
19
+ table.align_column(2, :center)
20
+
21
+ puts table
22
+ end
23
+ end
24
+ end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module SonicPass
4
- VERSION = '0.2.1'
4
+ VERSION = '1.0.1'
5
5
  end
data/lib/sonic_pass.rb CHANGED
@@ -20,6 +20,8 @@ module SonicPass
20
20
  # @param count [Integer] The number of passwords to generate. Defaults to 1.
21
21
  # @return [Array<String>] An array of strong passwords of the specified length.
22
22
  def self.generate(length = 12, count = 1)
23
- Array.new(count) { (Array.new(length) { CHARSETS.sample }).join }
23
+ passwords = Array.new(count) { (Array.new(length) { CHARSETS.sample }).join }
24
+
25
+ count == 1 ? passwords[0] : passwords
24
26
  end
25
27
  end
metadata CHANGED
@@ -1,17 +1,31 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sonic_pass
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - papakvy
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-09-20 00:00:00.000000000 Z
11
+ date: 2024-09-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: clipboard
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: 1.0.0
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: 1.0.0
27
+ - !ruby/object:Gem::Dependency
28
+ name: terminal-table
15
29
  requirement: !ruby/object:Gem::Requirement
16
30
  requirements:
17
31
  - - ">="
@@ -43,6 +57,7 @@ files:
43
57
  - bin/console
44
58
  - bin/setup
45
59
  - bin/sonic_pass
60
+ - cli_ext/base.rb
46
61
  - lib/sonic_pass.rb
47
62
  - lib/sonic_pass/version.rb
48
63
  - sig/sonic_pass.rbs
@@ -62,7 +77,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
62
77
  requirements:
63
78
  - - ">="
64
79
  - !ruby/object:Gem::Version
65
- version: 3.0.0
80
+ version: 2.4.0
66
81
  required_rubygems_version: !ruby/object:Gem::Requirement
67
82
  requirements:
68
83
  - - ">="