secret_generator 0.1.2 → 0.1.3
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/bin/{secret_generator.rb → secret_generator} +0 -0
- metadata +5 -15
- data/.gitignore +0 -9
- data/.rspec +0 -2
- data/.travis.yml +0 -3
- data/Gemfile +0 -4
- data/README.md +0 -52
- data/Rakefile +0 -6
- data/bin/console +0 -14
- data/bin/setup +0 -7
- data/lib/secret_generator/version.rb +0 -3
- data/lib/secret_generator.rb +0 -5
- data/secret_generator.gemspec +0 -24
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c1889c3b3c8ee6ad6ef045d9d2aa4dc009664461
|
|
4
|
+
data.tar.gz: 8e7ff6ada12090b09b2ce571d5a137b31914a023
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 45acf529dbab2a0fc1f41f121ef66092e2ce335d5a70c6431f0d13320c71496caaac15710c2f561e23e5ac0aafc0142ffbe2a5110a5e1a71cc0a052323097967
|
|
7
|
+
data.tar.gz: 80aa15a81a8a10085dcc559642b7d9479d2bd83d48c51afe13c285d9ccd95e909cae41fa778c3facc46139d9fc98c68cb5f418f243750f5567d1b32beef8e521
|
|
File without changes
|
metadata
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: secret_generator
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- '0xfffffff7'
|
|
8
8
|
autorequire:
|
|
9
|
-
bindir:
|
|
9
|
+
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
11
|
date: 2015-03-27 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
@@ -55,22 +55,12 @@ dependencies:
|
|
|
55
55
|
description: ''
|
|
56
56
|
email:
|
|
57
57
|
- 0xfffffff7@gmail.com
|
|
58
|
-
executables:
|
|
58
|
+
executables:
|
|
59
|
+
- secret_generator
|
|
59
60
|
extensions: []
|
|
60
61
|
extra_rdoc_files: []
|
|
61
62
|
files:
|
|
62
|
-
-
|
|
63
|
-
- ".rspec"
|
|
64
|
-
- ".travis.yml"
|
|
65
|
-
- Gemfile
|
|
66
|
-
- README.md
|
|
67
|
-
- Rakefile
|
|
68
|
-
- bin/console
|
|
69
|
-
- bin/secret_generator.rb
|
|
70
|
-
- bin/setup
|
|
71
|
-
- lib/secret_generator.rb
|
|
72
|
-
- lib/secret_generator/version.rb
|
|
73
|
-
- secret_generator.gemspec
|
|
63
|
+
- bin/secret_generator
|
|
74
64
|
homepage: https://github.com/0xfffffff7/secret_generator
|
|
75
65
|
licenses: []
|
|
76
66
|
metadata: {}
|
data/.gitignore
DELETED
data/.rspec
DELETED
data/.travis.yml
DELETED
data/Gemfile
DELETED
data/README.md
DELETED
|
@@ -1,52 +0,0 @@
|
|
|
1
|
-
# SecretGenerator
|
|
2
|
-
|
|
3
|
-
secret_generator can easily create a self-signed certificate.
|
|
4
|
-
|
|
5
|
-
# How to
|
|
6
|
-
|
|
7
|
-
```
|
|
8
|
-
secret_generator [hostname]
|
|
9
|
-
```
|
|
10
|
-
|
|
11
|
-
If Once you have omitted the host name of the argument, the host name of the machine will be used.
|
|
12
|
-
|
|
13
|
-
Result is output to current directory.
|
|
14
|
-
|
|
15
|
-
```
|
|
16
|
-
secret.key
|
|
17
|
-
public.key
|
|
18
|
-
```
|
|
19
|
-
|
|
20
|
-
## Installation
|
|
21
|
-
|
|
22
|
-
Add this line to your application's Gemfile:
|
|
23
|
-
|
|
24
|
-
```ruby
|
|
25
|
-
gem 'secret_generator'
|
|
26
|
-
```
|
|
27
|
-
|
|
28
|
-
And then execute:
|
|
29
|
-
|
|
30
|
-
$ bundle
|
|
31
|
-
|
|
32
|
-
Or install it yourself as:
|
|
33
|
-
|
|
34
|
-
$ gem install secret_generator
|
|
35
|
-
|
|
36
|
-
## Usage
|
|
37
|
-
|
|
38
|
-
TODO: Write usage instructions here
|
|
39
|
-
|
|
40
|
-
## Development
|
|
41
|
-
|
|
42
|
-
After checking out the repo, run `bin/setup` to install dependencies. Then, run `bin/console` for an interactive prompt that will allow you to experiment.
|
|
43
|
-
|
|
44
|
-
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` to create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
|
45
|
-
|
|
46
|
-
## Contributing
|
|
47
|
-
|
|
48
|
-
1. Fork it ( https://github.com/[my-github-username]/secret_generator/fork )
|
|
49
|
-
2. Create your feature branch (`git checkout -b my-new-feature`)
|
|
50
|
-
3. Commit your changes (`git commit -am 'Add some feature'`)
|
|
51
|
-
4. Push to the branch (`git push origin my-new-feature`)
|
|
52
|
-
5. Create a new Pull Request
|
data/Rakefile
DELETED
data/bin/console
DELETED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
#!/usr/bin/env ruby
|
|
2
|
-
|
|
3
|
-
require "bundler/setup"
|
|
4
|
-
require "secret_generator"
|
|
5
|
-
|
|
6
|
-
# You can add fixtures and/or initialization code here to make experimenting
|
|
7
|
-
# with your gem easier. You can also use a different console, if you like.
|
|
8
|
-
|
|
9
|
-
# (If you use this, don't forget to add pry to your Gemfile!)
|
|
10
|
-
# require "pry"
|
|
11
|
-
# Pry.start
|
|
12
|
-
|
|
13
|
-
require "irb"
|
|
14
|
-
IRB.start
|
data/bin/setup
DELETED
data/lib/secret_generator.rb
DELETED
data/secret_generator.gemspec
DELETED
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
# coding: utf-8
|
|
2
|
-
lib = File.expand_path('../lib', __FILE__)
|
|
3
|
-
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
4
|
-
require 'secret_generator/version'
|
|
5
|
-
|
|
6
|
-
Gem::Specification.new do |spec|
|
|
7
|
-
spec.name = "secret_generator"
|
|
8
|
-
spec.version = SecretGenerator::VERSION
|
|
9
|
-
spec.authors = ["0xfffffff7"]
|
|
10
|
-
spec.email = ["0xfffffff7@gmail.com"]
|
|
11
|
-
|
|
12
|
-
spec.summary = %q{secret_generator can easily create a self-signed certificate. }
|
|
13
|
-
spec.description = %q{}
|
|
14
|
-
spec.homepage = "https://github.com/0xfffffff7/secret_generator"
|
|
15
|
-
|
|
16
|
-
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
|
17
|
-
spec.bindir = "exe"
|
|
18
|
-
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
|
19
|
-
spec.require_paths = ["lib"]
|
|
20
|
-
|
|
21
|
-
spec.add_development_dependency "bundler", "~> 1.9"
|
|
22
|
-
spec.add_development_dependency "rake", "~> 10.0"
|
|
23
|
-
spec.add_development_dependency "rspec"
|
|
24
|
-
end
|