direct_ssh 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.
- data/README.md +1 -1
- data/direct_ssh.gemspec +2 -2
- data/lib/direct_ssh/version.rb +1 -1
- metadata +5 -4
data/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# DirectSsh
|
|
2
2
|
|
|
3
|
-
In order to use
|
|
3
|
+
In order to use SSH or SCP without the need to enter password every time, this gem will create public/private ssh rsa keys if they do not exist and send public key to remote server automatically only if necessary.
|
|
4
4
|
|
|
5
5
|
## Installation
|
|
6
6
|
|
data/direct_ssh.gemspec
CHANGED
|
@@ -10,8 +10,8 @@ Gem::Specification.new do |spec|
|
|
|
10
10
|
spec.version = DirectSsh::VERSION
|
|
11
11
|
spec.authors = ["Xia Xiongjun"]
|
|
12
12
|
spec.email = ["xxjapp@gmail.com"]
|
|
13
|
-
spec.description = %q{
|
|
14
|
-
spec.summary = %q{Use
|
|
13
|
+
spec.description = %q{In order to use SSH or SCP without the need to enter password every time, this gem will create public/private ssh rsa keys if they do not exist and send public key to remote server automatically only if necessary.}
|
|
14
|
+
spec.summary = %q{Use SSH or SCP directly without the need to enter password every time}
|
|
15
15
|
spec.homepage = %q{https://github.com/xxjapp/direct_ssh}
|
|
16
16
|
spec.license = "MIT"
|
|
17
17
|
|
data/lib/direct_ssh/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: direct_ssh
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.3
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -91,8 +91,9 @@ dependencies:
|
|
|
91
91
|
- - ! '>='
|
|
92
92
|
- !ruby/object:Gem::Version
|
|
93
93
|
version: '0'
|
|
94
|
-
description:
|
|
95
|
-
|
|
94
|
+
description: In order to use SSH or SCP without the need to enter password every time,
|
|
95
|
+
this gem will create public/private ssh rsa keys if they do not exist and send public
|
|
96
|
+
key to remote server automatically only if necessary.
|
|
96
97
|
email:
|
|
97
98
|
- xxjapp@gmail.com
|
|
98
99
|
executables:
|
|
@@ -139,5 +140,5 @@ rubyforge_project:
|
|
|
139
140
|
rubygems_version: 1.8.23
|
|
140
141
|
signing_key:
|
|
141
142
|
specification_version: 3
|
|
142
|
-
summary: Use
|
|
143
|
+
summary: Use SSH or SCP directly without the need to enter password every time
|
|
143
144
|
test_files: []
|