ssh-gemspec 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- data/bin/ssh-wrapper +14 -0
- metadata +67 -0
data/bin/ssh-wrapper
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
# Set up command line
|
4
|
+
command = ['ssh']
|
5
|
+
# Do we want to skip SSH hostkey checking?
|
6
|
+
command << "-o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no" if ENV['SSH_SKIP_HOSTKEY_CHECK']
|
7
|
+
# Use a custom private key file?
|
8
|
+
command << "-i #{ENV['SSH_IDENTITY_FILE']}" if ENV['SSH_IDENTITY_FILE']
|
9
|
+
# Use a custom port?
|
10
|
+
command << "-p #{ENV['SSH_PORT']}" if ENV['SSH_PORT']
|
11
|
+
# Get the remaining options from the command line
|
12
|
+
command += $*
|
13
|
+
# Execute the command
|
14
|
+
exec command.join(' ')
|
metadata
ADDED
@@ -0,0 +1,67 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: ssh-gemspec
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
hash: 23
|
5
|
+
prerelease: false
|
6
|
+
segments:
|
7
|
+
- 1
|
8
|
+
- 0
|
9
|
+
- 0
|
10
|
+
version: 1.0.0
|
11
|
+
platform: ruby
|
12
|
+
authors:
|
13
|
+
- Charlie Smurthwaite
|
14
|
+
autorequire:
|
15
|
+
bindir: bin
|
16
|
+
cert_chain: []
|
17
|
+
|
18
|
+
date: 2010-11-26 00:00:00 +00:00
|
19
|
+
default_executable:
|
20
|
+
dependencies: []
|
21
|
+
|
22
|
+
description:
|
23
|
+
email: charlie@atechmedia.com
|
24
|
+
executables:
|
25
|
+
- ssh-wrapper
|
26
|
+
extensions: []
|
27
|
+
|
28
|
+
extra_rdoc_files: []
|
29
|
+
|
30
|
+
files:
|
31
|
+
- bin/ssh-wrapper
|
32
|
+
has_rdoc: true
|
33
|
+
homepage: http://atechmedia.com
|
34
|
+
licenses: []
|
35
|
+
|
36
|
+
post_install_message:
|
37
|
+
rdoc_options: []
|
38
|
+
|
39
|
+
require_paths:
|
40
|
+
- lib
|
41
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
42
|
+
none: false
|
43
|
+
requirements:
|
44
|
+
- - ">="
|
45
|
+
- !ruby/object:Gem::Version
|
46
|
+
hash: 3
|
47
|
+
segments:
|
48
|
+
- 0
|
49
|
+
version: "0"
|
50
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
51
|
+
none: false
|
52
|
+
requirements:
|
53
|
+
- - ">="
|
54
|
+
- !ruby/object:Gem::Version
|
55
|
+
hash: 3
|
56
|
+
segments:
|
57
|
+
- 0
|
58
|
+
version: "0"
|
59
|
+
requirements: []
|
60
|
+
|
61
|
+
rubyforge_project:
|
62
|
+
rubygems_version: 1.3.7
|
63
|
+
signing_key:
|
64
|
+
specification_version: 3
|
65
|
+
summary: Ruby wrapper for ssh
|
66
|
+
test_files: []
|
67
|
+
|