pass 0.0.4 → 0.0.5

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
2
  SHA1:
3
- metadata.gz: df7341bf8662d2cbfba4f208c9b9c8fdee40f750
4
- data.tar.gz: 73f98afdc71b507808f82e3579a5dc203189332c
3
+ metadata.gz: 4c0d21c2d761abefac101b65714ce241d2a8450d
4
+ data.tar.gz: ae1a4f552e22f3786e8dde74dc4481eda7710163
5
5
  SHA512:
6
- metadata.gz: d0c5651e75f5b45bc5189cd4569e6f0502e39241b5eb8514c1bdeb6bc03fef1cd9caa4b01caad1312bdcc60a97fc5b78672148d668d9c711ffdb97dbbdb168cd
7
- data.tar.gz: 56c47745e475854fe3e7b7fd76df7aaee8731a7ebf9614d3ea33fa4631e5f8c9ef54e0f68cfb14419ae9d87a57bc1b9bb822e0ad87a4ea299e802fa1804beff2
6
+ metadata.gz: 5bff40017f7c2f257877f6b8ad3475cc3f26298c3d5a28d5925fa8887222c2427ace2e090cf7dabeba1291fc053eb9d4ad343747fc3b31179c02f504f2d2f2b3
7
+ data.tar.gz: 241aeafbeeefe989c0d2894f051387bcba20f45bc8ca545cb9df833c29339ade99e084a91d027112521eccdc60dbec409826efd751a8d8766f6421bf31cd1ac2
@@ -0,0 +1,47 @@
1
+ # Pass
2
+
3
+ [![Gem Version](https://badge.fury.io/rb/pass.svg)](https://badge.fury.io/rb/pass)
4
+ [![Build Status](https://travis-ci.org/krhitoshi/pass.svg?branch=master)](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).
@@ -1,3 +1,3 @@
1
1
  class Pass
2
- VERSION = "0.0.4"
2
+ VERSION = "0.0.5"
3
3
  end
@@ -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 for CUI}
13
- spec.description = %q{gem pass - Password Generator for CUI}
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
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-16 00:00:00.000000000 Z
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 for CUI
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.rdoc
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 for CUI
113
+ summary: Password Generator (CLI)
114
114
  test_files: []
@@ -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
-