sshgen 0.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 +7 -0
- data/Gemfile +5 -0
- data/README.md +0 -0
- data/Rakefile +0 -0
- data/lib/sshgen.rb +4 -0
- data/lib/sshgen/version.rb +3 -0
- data/sshgen.gemspec +23 -0
- data/test/sshgen.rb +0 -0
- metadata +52 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: 2b88aad7eb457b1216cd838efa69fb88f3172760
|
|
4
|
+
data.tar.gz: db56823e3ceff8f0c106532bd1f9a004504522df
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: f0d3535f709d699f0ca1849a96c2c2c036ce31b429d0b4f41f98f5da826f0c87c151aab451779da1bc3cb9193940ca09c5e0da7061c0b7a148d2d5d938802702
|
|
7
|
+
data.tar.gz: bbcda0fdc64148ddc0372b0eae880386d1fb4839d247f0573946cd4c88bf64db43c1c473ef40413a8b53db45f86fe5f86acd5bebcb0b54fda9f6683ff440f94e
|
data/Gemfile
ADDED
data/README.md
ADDED
|
File without changes
|
data/Rakefile
ADDED
|
File without changes
|
data/lib/sshgen.rb
ADDED
data/sshgen.gemspec
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
require "./lib/sshgen/version"
|
|
2
|
+
|
|
3
|
+
Gem::Specification.new do |gem|
|
|
4
|
+
gem.name = "sshgen"
|
|
5
|
+
gem.authors = ["Connor Atherton"]
|
|
6
|
+
gem.email = "c.liam.atherton@gmail.com"
|
|
7
|
+
gem.summary = "Handy SSH key operations."
|
|
8
|
+
gem.description = "A ruby library for SSH key operations."
|
|
9
|
+
gem.homepage = "http://github.com/ConnorAtherton/sshgen"
|
|
10
|
+
gem.license = "MIT"
|
|
11
|
+
|
|
12
|
+
gem.files = Dir.glob("lib/**/*") + [
|
|
13
|
+
"README.md",
|
|
14
|
+
"Rakefile",
|
|
15
|
+
"Gemfile",
|
|
16
|
+
"sshgen.gemspec",
|
|
17
|
+
]
|
|
18
|
+
gem.test_files = Dir.glob("test/**/*")
|
|
19
|
+
|
|
20
|
+
gem.version = SSHGen::VERSION
|
|
21
|
+
gem.platform = Gem::Platform::RUBY
|
|
22
|
+
gem.require_paths = ["lib"]
|
|
23
|
+
end
|
data/test/sshgen.rb
ADDED
|
File without changes
|
metadata
ADDED
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: sshgen
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.0.1
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Connor Atherton
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2015-01-08 00:00:00.000000000 Z
|
|
12
|
+
dependencies: []
|
|
13
|
+
description: A ruby library for SSH key operations.
|
|
14
|
+
email: c.liam.atherton@gmail.com
|
|
15
|
+
executables: []
|
|
16
|
+
extensions: []
|
|
17
|
+
extra_rdoc_files: []
|
|
18
|
+
files:
|
|
19
|
+
- Gemfile
|
|
20
|
+
- README.md
|
|
21
|
+
- Rakefile
|
|
22
|
+
- lib/sshgen.rb
|
|
23
|
+
- lib/sshgen/version.rb
|
|
24
|
+
- sshgen.gemspec
|
|
25
|
+
- test/sshgen.rb
|
|
26
|
+
homepage: http://github.com/ConnorAtherton/sshgen
|
|
27
|
+
licenses:
|
|
28
|
+
- MIT
|
|
29
|
+
metadata: {}
|
|
30
|
+
post_install_message:
|
|
31
|
+
rdoc_options: []
|
|
32
|
+
require_paths:
|
|
33
|
+
- lib
|
|
34
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
35
|
+
requirements:
|
|
36
|
+
- - ">="
|
|
37
|
+
- !ruby/object:Gem::Version
|
|
38
|
+
version: '0'
|
|
39
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
40
|
+
requirements:
|
|
41
|
+
- - ">="
|
|
42
|
+
- !ruby/object:Gem::Version
|
|
43
|
+
version: '0'
|
|
44
|
+
requirements: []
|
|
45
|
+
rubyforge_project:
|
|
46
|
+
rubygems_version: 2.4.2
|
|
47
|
+
signing_key:
|
|
48
|
+
specification_version: 4
|
|
49
|
+
summary: Handy SSH key operations.
|
|
50
|
+
test_files:
|
|
51
|
+
- test/sshgen.rb
|
|
52
|
+
has_rdoc:
|