pass 0.0.4 → 0.0.5
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 +4 -4
- data/README.md +47 -0
- data/lib/pass/version.rb +1 -1
- data/pass.gemspec +2 -2
- metadata +5 -5
- data/README.rdoc +0 -44
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4c0d21c2d761abefac101b65714ce241d2a8450d
|
4
|
+
data.tar.gz: ae1a4f552e22f3786e8dde74dc4481eda7710163
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5bff40017f7c2f257877f6b8ad3475cc3f26298c3d5a28d5925fa8887222c2427ace2e090cf7dabeba1291fc053eb9d4ad343747fc3b31179c02f504f2d2f2b3
|
7
|
+
data.tar.gz: 241aeafbeeefe989c0d2894f051387bcba20f45bc8ca545cb9df833c29339ade99e084a91d027112521eccdc60dbec409826efd751a8d8766f6421bf31cd1ac2
|
data/README.md
ADDED
@@ -0,0 +1,47 @@
|
|
1
|
+
# Pass
|
2
|
+
|
3
|
+
[](https://badge.fury.io/rb/pass)
|
4
|
+
[](https://travis-ci.org/krhitoshi/pass)
|
5
|
+
|
6
|
+
## Description
|
7
|
+
|
8
|
+
Pass is a command-line tool to generate random passwords.
|
9
|
+
|
10
|
+
## Installation
|
11
|
+
|
12
|
+
The first step is to install the gem
|
13
|
+
|
14
|
+
```
|
15
|
+
gem install pass
|
16
|
+
```
|
17
|
+
|
18
|
+
## Usage
|
19
|
+
|
20
|
+
You can run Pass to generate one random password. A generated password has 12 characters with more than one upper case letter, lower case letter, and numeric character.
|
21
|
+
|
22
|
+
```
|
23
|
+
pass
|
24
|
+
```
|
25
|
+
|
26
|
+
If you need more passwords, you can specify the number of passwords.
|
27
|
+
|
28
|
+
```
|
29
|
+
pass 12
|
30
|
+
```
|
31
|
+
|
32
|
+
You can specify the password length by -c option.
|
33
|
+
|
34
|
+
```
|
35
|
+
pass -c 18
|
36
|
+
```
|
37
|
+
|
38
|
+
## Options
|
39
|
+
|
40
|
+
```
|
41
|
+
-c NUM specify password length
|
42
|
+
-v, --version show version
|
43
|
+
```
|
44
|
+
|
45
|
+
## License
|
46
|
+
|
47
|
+
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
data/lib/pass/version.rb
CHANGED
data/pass.gemspec
CHANGED
@@ -9,8 +9,8 @@ Gem::Specification.new do |spec|
|
|
9
9
|
spec.authors = ["Hitoshi Kurokawa"]
|
10
10
|
spec.email = ["hitoshi@nextseed.jp"]
|
11
11
|
|
12
|
-
spec.summary = %q{Password Generator
|
13
|
-
spec.description = %q{gem pass - Password Generator
|
12
|
+
spec.summary = %q{Password Generator (CLI)}
|
13
|
+
spec.description = %q{gem pass - Password Generator (CLI)}
|
14
14
|
spec.homepage = "http://github.com/krhitoshi/pass"
|
15
15
|
spec.license = "MIT"
|
16
16
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pass
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Hitoshi Kurokawa
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-10-
|
11
|
+
date: 2016-10-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -66,7 +66,7 @@ dependencies:
|
|
66
66
|
- - ">="
|
67
67
|
- !ruby/object:Gem::Version
|
68
68
|
version: '0'
|
69
|
-
description: gem pass - Password Generator
|
69
|
+
description: gem pass - Password Generator (CLI)
|
70
70
|
email:
|
71
71
|
- hitoshi@nextseed.jp
|
72
72
|
executables:
|
@@ -79,7 +79,7 @@ files:
|
|
79
79
|
- ".travis.yml"
|
80
80
|
- Gemfile
|
81
81
|
- LICENSE.txt
|
82
|
-
- README.
|
82
|
+
- README.md
|
83
83
|
- Rakefile
|
84
84
|
- bin/console
|
85
85
|
- bin/setup
|
@@ -110,5 +110,5 @@ rubyforge_project:
|
|
110
110
|
rubygems_version: 2.5.1
|
111
111
|
signing_key:
|
112
112
|
specification_version: 4
|
113
|
-
summary: Password Generator
|
113
|
+
summary: Password Generator (CLI)
|
114
114
|
test_files: []
|
data/README.rdoc
DELETED
@@ -1,44 +0,0 @@
|
|
1
|
-
= Pass
|
2
|
-
|
3
|
-
Pass is a command to generator random passwords for CUI.
|
4
|
-
|
5
|
-
== Using
|
6
|
-
|
7
|
-
The first step is to install the gem
|
8
|
-
|
9
|
-
gem install pass
|
10
|
-
|
11
|
-
You can run Pass to generate one random password. A generated password has 12 characters with more than one upper case letter, lower case letter, and numeric character.
|
12
|
-
|
13
|
-
pass
|
14
|
-
|
15
|
-
If you need more passwords, you can specify the number of passwords.
|
16
|
-
|
17
|
-
pass 12
|
18
|
-
|
19
|
-
You can specify the password length by -c option.
|
20
|
-
|
21
|
-
pass -c 18
|
22
|
-
|
23
|
-
== Options
|
24
|
-
|
25
|
-
```
|
26
|
-
-c NUM specify password length
|
27
|
-
-v, --version show version
|
28
|
-
```
|
29
|
-
|
30
|
-
== Contributing to Pass
|
31
|
-
|
32
|
-
* Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet
|
33
|
-
* Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it
|
34
|
-
* Fork the project
|
35
|
-
* Start a feature/bugfix branch
|
36
|
-
* Commit and push until you are happy with your contribution
|
37
|
-
* Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.
|
38
|
-
* Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.
|
39
|
-
|
40
|
-
== Copyright
|
41
|
-
|
42
|
-
Copyright (c) 2011 Hitoshi Kurokawa. See LICENSE.txt for
|
43
|
-
further details.
|
44
|
-
|