sonic_pass 0.2.0 → 1.0.0

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: 03e54fe57c1ce55e0e03cdbbb986680c0fc268a7c31196c84dbc57e38f31f1da
4
- data.tar.gz: c3675027fbb267f6427b3161803b677d93402b53b5f56e1c2eb4e1a75f6dc222
3
+ metadata.gz: 2458e31ed5dacfe4ea786518af9263e3f7201e4fa3796defb99f45503f9e61b3
4
+ data.tar.gz: e0d9c54cfead25c7ac837a73cdc3c134a7a1c02d996c1ce9f8096699c440cef4
5
5
  SHA512:
6
- metadata.gz: de2fc1041e31b1a6ad9f4fb543cf4c3278b2630ff2afaacc75bf60dbe924b91c73d270c2adefda26846d68349531b7796eed43d4c717fb8b255fc34400e7d951
7
- data.tar.gz: a0c0b8e32b09d15a821decf3bdf488febaaf5db2a78f3cd0a757e59274956b966640b9a7e11a072f14b691b98c88904d6e88a855d1838bdd64b0001cb57eac1b
6
+ metadata.gz: de39af42150ca51471aaef119a60f81bd761add3ba9226bed5590605309f96fed4c32713ba09fc7fb6fcb71481b8b659db9d1f5cd3ba03ab8fc90c402ba63806
7
+ data.tar.gz: 74fcf7d2699ead5d9eb03939093adae22fd4206d5463b8948ae16e7c6c9b8046a7e18bf5f01a4616a002457a3df31d219baf54d77094d30ae078e15efde7aaf4
data/README.md CHANGED
@@ -1,39 +1,110 @@
1
- # SonicPass
1
+ ![Gem](https://img.shields.io/gem/v/sonic_pass?color=%25234cc61f&label=Gem%20version&logo=ruby&logoColor=red&link=https%3A%2F%2Frubygems.org%2Fgems%2Fsonic_pass)
2
+ ![Gem](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)
3
+ ![GitHub Actions Workflow Status](https://img.shields.io/github/actions/workflow/status/papakvy/sonic_pass/main.yml?branch=master&logo=rubocop&logoColor=red&label=Rubocop%20Lint)
4
+ ![GitHub Actions Workflow Status](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)
2
5
 
3
- TODO: Delete this and the text below, and describe your gem
6
+ Table of Contents
7
+ -----------------
4
8
 
5
- Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/sonic_pass`. To experiment with that code, run `bin/console` for an interactive prompt.
9
+ * [Overview](#overview)
10
+ * [Installation](#installation)
11
+ * [Usage](#usage)
12
+ * [Contributing](#contributing)
13
+ * [License](#license)
6
14
 
7
- ## Installation
15
+ ### Overview
8
16
 
9
- TODO: Replace `UPDATE_WITH_YOUR_GEM_NAME_IMMEDIATELY_AFTER_RELEASE_TO_RUBYGEMS_ORG` with your gem name right after releasing it to RubyGems.org. Please do not do it earlier due to security reasons. Alternatively, replace this section with instructions to install your gem from git if you don't plan to release to RubyGems.org.
17
+ Sonic Pass is a Ruby gem designed to generate strong, unique passwords. It provides a simple and efficient way to create passwords of varying lengths, making it an ideal tool for developers and users alike.
10
18
 
11
- Install the gem and add to the application's Gemfile by executing:
19
+ ### Installation
12
20
 
13
- $ bundle add UPDATE_WITH_YOUR_GEM_NAME_IMMEDIATELY_AFTER_RELEASE_TO_RUBYGEMS_ORG
21
+ To install the Sonic Pass gem, run the following command in your terminal:
14
22
 
15
- If bundler is not being used to manage dependencies, install the gem by executing:
23
+ ```bash
24
+ gem install sonic_pass
25
+ ```
16
26
 
17
- $ gem install UPDATE_WITH_YOUR_GEM_NAME_IMMEDIATELY_AFTER_RELEASE_TO_RUBYGEMS_ORG
27
+ Alternatively, you can add the following line to your Gemfile:
18
28
 
19
- ## Usage
29
+ ```ruby
30
+ gem 'sonic_pass'
31
+ ```
20
32
 
21
- TODO: Write usage instructions here
33
+ Then, run `bundle install` to install the gem.
22
34
 
23
- ## Development
35
+ ### Usage
24
36
 
25
- After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake test` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
37
+ To use the Sonic Pass gem, simply require it in your Ruby file:
26
38
 
27
- To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org).
39
+ ```ruby
40
+ require 'sonic_pass'
41
+ ```
28
42
 
29
- ## Contributing
43
+ You can then generate a password using the `SonicPass.generate` method:
30
44
 
31
- Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/sonic_pass. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/[USERNAME]/sonic_pass/blob/master/CODE_OF_CONDUCT.md).
45
+ ```ruby
46
+ password = SonicPass.generate
47
+ puts password
48
+ # cpzmh3OV\",C7
49
+ ```
32
50
 
33
- ## License
51
+ Or you can generate multiple passwords, using `count > 1` params
34
52
 
35
- The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
53
+ ```ruby
54
+ passwords = SonicPass.generate(12, 5)
55
+ puts passwords
56
+ # ,Y36.9H-XqS;
57
+ # vRzCyIq.=$W5
58
+ # 1}-'D*'ya$Vg
59
+ # %66db&y$rjhU
60
+ # x';2I7y$<&5f
61
+ ```
36
62
 
37
- ## Code of Conduct
63
+ ### How to use CLI command `sonic_pass`
38
64
 
39
- Everyone interacting in the SonicPass project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/sonic_pass/blob/master/CODE_OF_CONDUCT.md).
65
+ - Put executable path into `PATH` directly
66
+
67
+ ```bash
68
+ gem_bin_path=$(gem env | grep "EXECUTABLE DIRECTORY" | awk -F ': ' '{print $2}')
69
+ export PATH="$PATH:$gem_bin_path"
70
+ ```
71
+
72
+ - Put executable path into `PATH` in the appropriate configuration file
73
+
74
+ Assume executable path is: `/home/user/.asdf/installs/ruby/3.0.0/bin`
75
+
76
+ For bash (usually ~/.bashrc or ~/.bash_profile):
77
+
78
+ ```bash
79
+ echo 'export PATH="$PATH:/home/user/.asdf/installs/ruby/3.0.0/bin"' >> ~/.bashrc
80
+ source ~/.bashrc
81
+ ```
82
+
83
+
84
+ For zsh (usually ~/.zshrc):
85
+
86
+ ```bash
87
+ echo 'export PATH="$PATH:/home/user/.asdf/installs/ruby/3.0.0/bin"' >> ~/.zshrc
88
+ source ~/.zshrc
89
+ ```
90
+
91
+ Verify the change: After updating your configuration file, you can check if the new path has been added by running:
92
+
93
+ ```bash
94
+ echo $PATH
95
+ ```
96
+
97
+ Finally, run CLI command:
98
+
99
+ ```bash
100
+ sonic_pass
101
+ # Password: mM>]3ERLlD5L copied to clipboard
102
+ ```
103
+
104
+ ### Contributing
105
+
106
+ Contributions to the Sonic Pass gem are welcome. To contribute, please fork the repository and submit a pull request with your changes.
107
+
108
+ ### License
109
+
110
+ The Sonic Pass gem is released under the MIT License. See the LICENSE file for details.
data/bin/sonic_pass CHANGED
@@ -11,8 +11,8 @@ passwords = SonicPass.generate(length, count)
11
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
17
  puts passwords.join("\n")
18
18
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module SonicPass
4
- VERSION = '0.2.0'
4
+ VERSION = '1.0.0'
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,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sonic_pass
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 1.0.0
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-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: clipboard