hieb 0.0.1 → 0.0.2
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/README.md +34 -1
- metadata +24 -4
- /data/bin/{hieb.rb → hieb} +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b9fd10c237cd9206ef3c1c0e87193325e1590d82
|
|
4
|
+
data.tar.gz: b08dc7b6737eed56a53a125467832c7e1dacf819
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0eb98e51e17d44cd12a9692b91257be8d16ec29f60395c556be07d02780b56010b3368ab3a8ae73d7a4198717d8ad4bb314bd2074b07fd93bc04bcf75bacbd1c
|
|
7
|
+
data.tar.gz: ffea009880002f2b4083b0d094d93c2f85f8bc770c3d492b7e552f19f1755ce25e597b2a7377f653076e56ac03ec14d1bf0afd1fb1d5ca4e349432302ae7e501
|
data/README.md
CHANGED
|
@@ -1 +1,34 @@
|
|
|
1
|
-
# hieb
|
|
1
|
+
# hieb
|
|
2
|
+
|
|
3
|
+
Simple deployment tool using SSH and supporting command execution and file upload
|
|
4
|
+
|
|
5
|
+
## Usage
|
|
6
|
+
|
|
7
|
+
Call the `hieb` command for one server like this:
|
|
8
|
+
|
|
9
|
+
```
|
|
10
|
+
hieb 192.168.0.1 user password
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
or
|
|
14
|
+
|
|
15
|
+
```
|
|
16
|
+
hieb 192.168.0.1 user ~/.ssh/id_rsa
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
### Command Execution
|
|
20
|
+
|
|
21
|
+
Hieb is searching in the working directory for `_exe.json`. The content might look like this:
|
|
22
|
+
|
|
23
|
+
```
|
|
24
|
+
{
|
|
25
|
+
"commands": [
|
|
26
|
+
"hostname",
|
|
27
|
+
"ls -lah /tmp"
|
|
28
|
+
]
|
|
29
|
+
}
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
### File Upload
|
|
33
|
+
|
|
34
|
+
Hieb is searching in the working directory for `_files`. The content of this directory will be uploaded starting from the root directory.
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: hieb
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Daniel Bovensiepen
|
|
@@ -9,16 +9,36 @@ autorequire:
|
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
11
|
date: 2017-01-25 00:00:00.000000000 Z
|
|
12
|
-
dependencies:
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: net-ssh
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - ~>
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: '4.0'
|
|
20
|
+
- - '>='
|
|
21
|
+
- !ruby/object:Gem::Version
|
|
22
|
+
version: 4.0.1
|
|
23
|
+
type: :runtime
|
|
24
|
+
prerelease: false
|
|
25
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
26
|
+
requirements:
|
|
27
|
+
- - ~>
|
|
28
|
+
- !ruby/object:Gem::Version
|
|
29
|
+
version: '4.0'
|
|
30
|
+
- - '>='
|
|
31
|
+
- !ruby/object:Gem::Version
|
|
32
|
+
version: 4.0.1
|
|
13
33
|
description: Simple deployment tool using SSH and supporting command execution and
|
|
14
34
|
file upload
|
|
15
35
|
email: daniel@bovensiepen.net
|
|
16
36
|
executables:
|
|
17
|
-
- hieb
|
|
37
|
+
- hieb
|
|
18
38
|
extensions: []
|
|
19
39
|
extra_rdoc_files: []
|
|
20
40
|
files:
|
|
21
|
-
- bin/hieb
|
|
41
|
+
- bin/hieb
|
|
22
42
|
- LICENSE
|
|
23
43
|
- README.md
|
|
24
44
|
homepage: https://github.com/bovi/hieb
|
/data/bin/{hieb.rb → hieb}
RENAMED
|
File without changes
|